body {
    background-color: #F8FAFC; 
    color: #0F172A; 
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: '"Cormorant Garamond"', serif;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; 
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-btn-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: #FFFFFF; 
    transition: all 0.3s ease;
}

.gold-btn-gradient:hover {
    background: linear-gradient(135deg, #C5A028 0%, #D4AF37 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F8FAFC; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #B8860B; }

.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #D4AF37;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
    margin: 0 2px;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}