:root {
    --primary: #c4b5fd; /* Soft purple/gold tone */
    --accent: #fbbf24; /* Gold accent */
    --dark: #020617;
    --glass: rgba(15, 23, 42, 0.8);
    --jpm-blue: #1d4ed8;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--dark);
    color: #f8fafc;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 110%;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

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

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

.premium-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
}

canvas#bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
}

.section-padding {
    padding: 120px 0;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-link {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-premium:hover::before {
    left: 100%;
}

/* Logo Management */
.club-logo {
    height: 40px;
    width: auto;
    content: url('/static/images/adroitsdvc.png');
    transition: opacity 0.3s ease;
}

.club-logo:hover {
    opacity: 0.8;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

/* Leaderboard & Map */
#map {
    height: 500px;
    width: 100%;
    border-radius: 30px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaderboard-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}
