:root {
    --gold: #D4AF37;
    --obsidian: #050505;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.bg-gold {
    background-color: var(--gold);
}

.hero-sphere {
    animation: float 10s ease-in-out infinite;
    filter: saturate(0.8) contrast(1.1);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1.5deg); }
    66% { transform: translateY(8px) rotate(-1.5deg); }
}

.tier-card {
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(10px);
}

.tier-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(168, 85, 247, 0.05);
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide cursor on desktop if we have JS */
@media (min-width: 1024px) {
    .cursor-none * {
        cursor: none !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #custom-cursor { display: none; }
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #222;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.leaderboard-row {
    transition: all 0.4s ease;
}

.leaderboard-row:hover {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
    transform: scale(1.01);
}

.subscribe-btn {
    position: relative;
    overflow: hidden;
}

.subscribe-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.subscribe-btn:hover::after {
    left: 100%;
}

.faq-answer {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
