body {
    background-color: #000;
    margin: 0;
    overflow: hidden;
    color: #D4AF37;
    font-family: system-ui, -apple-system, sans-serif;
}

#root {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes crest-breath {
    0% {
        transform: scale(0.95);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.18;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.08;
    }
}

.animate-crest-breath {
    animation: crest-breath 8s ease-in-out infinite;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
}
