@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --purple: #6B21A8;
    --purple-light: #9333EA;
    --dark: #0F0A1A;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(180deg, #0F0A1A 0%, #1a0f2e 50%, #0F0A1A 100%);
    min-height: 100vh;
}

.heading-font {
    font-family: 'Playfair Display', 'Inter', serif;
}

.gold-text {
    background: linear-gradient(135deg, #D4AF37, #F4E4A6, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-nav {
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #B8962E);
    color: #0F0A1A;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.hero-gradient {
    background: radial-gradient(ellipse at 30% 20%, rgba(107, 33, 168, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.card-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card-glass:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    transition: all 0.2s;
}

.social-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.stat-card {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-input option {
    background: #1a0f2e;
    color: white;
}

.nav-link.active {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.1);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.faq-item[open] summary {
    color: var(--gold);
}

.prose-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--gold-light);
}

.prose-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.prose-content p, .prose-content li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.prose-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.prose-content li {
    margin: 0.5rem 0;
}

@keyframes pulse-gold {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse-dot {
    animation: pulse-gold 2s infinite;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(107, 33, 168, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.4);
}