* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark-blue: #0a1a2e;
    --bg-darker-blue: #081420;
    --accent-blue: #4FC3F7;
    --accent-light-blue: #81D4FA;
    --accent-yellow: #FFD54F;
    --accent-orange: #FF8A65;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(15, 30, 50, 0.8);
    --border-color: rgba(79, 195, 247, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, var(--bg-darker-blue) 0%, var(--bg-dark-blue) 100%);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--accent-yellow);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--accent-yellow);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 1000;
    background: rgba(20, 30, 45, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: all;
    opacity: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar:not(.visible) {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(20, 30, 45, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.nav-logo:hover {
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link.active {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link.active::before {
    opacity: 1;
    top: -8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker-blue) 0%, var(--bg-dark-blue) 50%, #0d2b47 100%);
    padding-top: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, 
        var(--bg-dark-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    opacity: 0.7;
    filter: blur(15px);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    filter: blur(12px);
}

.cloud-1 {
    width: 300px;
    height: 100px;
    top: 20%;
    left: 0;
    animation: cloudFloat1 30s linear infinite;
}

.cloud-1::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: 50px;
}

.cloud-1::after {
    width: 120px;
    height: 120px;
    top: -30px;
    right: 30px;
}

.cloud-2 {
    width: 250px;
    height: 80px;
    top: 40%;
    left: 0;
    animation: cloudFloat2 35s linear infinite;
    animation-delay: -5s;
}

.cloud-2::before {
    width: 120px;
    height: 120px;
    top: -40px;
    left: 30px;
}

.cloud-2::after {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 20px;
}

.cloud-3 {
    width: 400px;
    height: 120px;
    top: 60%;
    left: 0;
    animation: cloudFloat3 40s linear infinite;
    animation-delay: -10s;
}

.cloud-3::before {
    width: 180px;
    height: 180px;
    top: -60px;
    left: 80px;
}

.cloud-3::after {
    width: 150px;
    height: 150px;
    top: -40px;
    right: 50px;
}

.cloud-4 {
    width: 200px;
    height: 70px;
    top: 15%;
    left: 0;
    animation: cloudFloat4 25s linear infinite;
    animation-delay: -8s;
}

.cloud-4::before {
    width: 100px;
    height: 100px;
    top: -35px;
    left: 20px;
}

.cloud-4::after {
    width: 90px;
    height: 90px;
    top: -25px;
    right: 15px;
}

.cloud-5 {
    width: 350px;
    height: 110px;
    top: 75%;
    left: 0;
    animation: cloudFloat5 45s linear infinite;
    animation-delay: -15s;
}

.cloud-5::before {
    width: 160px;
    height: 160px;
    top: -55px;
    left: 60px;
}

.cloud-5::after {
    width: 140px;
    height: 140px;
    top: -35px;
    right: 40px;
}

@keyframes cloudFloat1 {
    0% {
        transform: translateX(-100px) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px)) translateY(-30px);
    }
}

@keyframes cloudFloat2 {
    0% {
        transform: translateX(-150px) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 250px)) translateY(20px);
    }
}

@keyframes cloudFloat3 {
    0% {
        transform: translateX(-200px) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 400px)) translateY(-25px);
    }
}

@keyframes cloudFloat4 {
    0% {
        transform: translateX(-120px) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(15px);
    }
}

@keyframes cloudFloat5 {
    0% {
        transform: translateX(-180px) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 350px)) translateY(-20px);
    }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(3px 3px at 10% 90%, white, transparent),
        radial-gradient(2px 2px at 70% 20%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    min-height: 100vh;
    gap: 60px;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    flex: 1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--text-white);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-title .highlight {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--text-white);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(76, 175, 80, 0.5);
}

.btn-start {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.5) 0%, rgba(69, 160, 73, 0.5) 100%) !important;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2) !important;
    filter: grayscale(0.3);
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.treasury-icon {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0);
    transition: none;
}

.hero .treasury-icon.animate-coin,
.why-it-works.visible .treasury-icon {
    opacity: 1;
    transform: scale(1);
}

.treasury-icon.animate-coin {
    animation: coinAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, treasuryPulse 4s ease-in-out infinite 2.5s;
}

@keyframes coinAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.coin-circle-outer {
    stroke-dasharray: 817;
    stroke-dashoffset: 817;
    opacity: 0;
    animation: none;
}

.coin-circle-middle {
    stroke-dasharray: 723;
    stroke-dashoffset: 723;
    opacity: 0;
    animation: none;
}

.coin-circle-fill-1 {
    opacity: 0;
    animation: none;
}

.coin-circle-fill-2 {
    opacity: 0;
    animation: none;
}

.coin-text {
    opacity: 0;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    fill: none;
    animation: none;
    transform: translate(0, -5px);
}

.treasury-icon.animate-coin .coin-circle-outer {
    animation: drawCircle 1.8s ease-out 0.6s forwards;
}

.treasury-icon.animate-coin .coin-circle-middle {
    animation: drawCircle 1.8s ease-out 0.9s forwards;
}

.treasury-icon.animate-coin .coin-circle-fill-1 {
    animation: fadeInCircle 1s ease-out 1.4s forwards;
}

.treasury-icon.animate-coin .coin-circle-fill-2 {
    animation: fadeInCircle 1s ease-out 1.6s forwards;
}

.treasury-icon.animate-coin .coin-text {
    animation: drawDollar 2s ease-out 1.8s forwards;
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 817;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes fadeInCircle {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawDollar {
    0% {
        opacity: 0;
        stroke-dashoffset: 500;
        fill: none;
    }
    50% {
        opacity: 1;
        stroke-dashoffset: 250;
        fill: none;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        fill: url(#goldGradient);
    }
}

.treasury-icon::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 79, 0.3) 0%, transparent 70%);
    animation: treasuryGlow 4s ease-in-out infinite;
    z-index: -1;
}

.treasury-icon::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 79, 0.2) 0%, transparent 75%);
    animation: treasuryGlow 4s ease-in-out infinite 0.5s;
    z-index: -2;
}

@keyframes treasuryPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 215, 79, 0.7));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 45px rgba(255, 215, 79, 1));
    }
}

@keyframes treasuryGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* How it Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark-blue) 0%, var(--bg-darker-blue) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        var(--bg-darker-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.how-it-works,
.why-it-works,
.gallery-section,
.leaderboard-section,
.cta-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works.visible,
.why-it-works.visible,
.gallery-section.visible,
.leaderboard-section.visible,
.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.how-card {
    background: linear-gradient(135deg, 
        rgba(15, 30, 50, 0.9) 0%, 
        rgba(20, 40, 65, 0.8) 100%);
    border: 2px solid transparent;
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(30px);
    opacity: 0;
    transform: translateY(80px) scale(0.9) rotateX(15deg);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.how-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(79, 195, 247, 0.3) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.how-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.1) 0%, 
        transparent 50%,
        rgba(79, 195, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    border-radius: 32px;
}

.how-card:hover {
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 
        0 30px 100px rgba(79, 195, 247, 0.4),
        0 0 60px rgba(79, 195, 247, 0.2),
        inset 0 0 40px rgba(79, 195, 247, 0.1);
    background: linear-gradient(135deg, 
        rgba(15, 30, 50, 0.95) 0%, 
        rgba(20, 40, 65, 0.9) 100%);
}

.how-card:hover::before {
    opacity: 1;
}

.how-card:hover::after {
    opacity: 1;
}

.how-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.card-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-card:hover .card-icon {
    transform: scale(1.15) rotateY(10deg);
    filter: drop-shadow(0 0 30px rgba(79, 195, 247, 0.6));
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Why it Works Section */
.why-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker-blue) 0%, var(--bg-dark-blue) 100%);
    position: relative;
}

.why-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        var(--bg-dark-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.5;
}

.why-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 65px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.why-card {
    background: rgba(15, 30, 50, 0.7);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
}

.why-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(70deg, 
        transparent 0%, 
        transparent 45%,
        rgba(79, 195, 247, 0.2) 50%,
        transparent 55%,
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(70deg);
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.why-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(70deg);
}

.why-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, 
        rgba(79, 195, 247, 0.3) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
}

.why-card.animate:not(:last-child)::after {
    opacity: 1;
}

.why-card-title,
.why-card-description {
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 16px 50px rgba(79, 195, 247, 0.25);
    background: rgba(15, 30, 50, 0.85);
}

.why-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.why-card-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark-blue) 0%, var(--bg-darker-blue) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        var(--bg-dark-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

.gallery-item {
    text-align: center;
    opacity: 0;
    transform: translateY(80px) scale(0.9) rotateY(-10deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0deg);
}

.gallery-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, 
        rgba(15, 30, 50, 0.9) 0%, 
        rgba(20, 40, 65, 0.8) 100%);
    border: 2px solid transparent;
    border-radius: 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(30px);
    transform-style: preserve-3d;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(79, 195, 247, 0.4) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.15) 0%, 
        transparent 50%,
        rgba(79, 195, 247, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    border-radius: 32px;
}

.gallery-placeholder:hover {
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 
        0 30px 100px rgba(79, 195, 247, 0.4),
        0 0 60px rgba(79, 195, 247, 0.2),
        inset 0 0 40px rgba(79, 195, 247, 0.1);
    background: linear-gradient(135deg, 
        rgba(15, 30, 50, 0.95) 0%, 
        rgba(20, 40, 65, 0.9) 100%);
}

.gallery-placeholder:hover::before {
    opacity: 1;
}

.gallery-placeholder:hover::after {
    opacity: 1;
}

.placeholder-pattern {
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(79, 195, 247, 0.05) 10px,
            rgba(79, 195, 247, 0.05) 20px
        );
    opacity: 0.5;
}

.gallery-caption {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker-blue) 0%, var(--bg-dark-blue) 100%);
    position: relative;
}

.leaderboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        var(--bg-darker-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 60px;
}

.leaderboard-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.leaderboard-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(15, 30, 50, 0.6);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 16px;
    padding: 28px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.leaderboard-item:hover {
    border-color: var(--accent-blue);
    transform: translateX(12px);
    box-shadow: 0 10px 40px rgba(79, 195, 247, 0.25);
    background: rgba(15, 30, 50, 0.8);
}

.rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    min-width: 40px;
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.player-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.player-share {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-darker-blue) 0%, #0d2b47 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        var(--bg-dark-blue) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light-blue) 100%);
    color: var(--text-white);
    padding: 20px 48px;
    font-size: 1.2rem;
    box-shadow: 0 6px 30px rgba(79, 195, 247, 0.4);
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(79, 195, 247, 0.6);
}

.btn-cta-disabled {
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.btn-cta-disabled:hover {
    transform: none !important;
    box-shadow: 0 6px 30px rgba(79, 195, 247, 0.4) !important;
}

.cta-subtitle {
    margin-top: 24px;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-darker-blue);
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .treasury-icon svg {
        width: 200px;
        height: 200px;
    }

    .why-content {
        gap: 50px;
    }

    .why-visual-top {
        margin-bottom: 80px;
    }

    .treasury-icon svg {
        width: 200px;
        height: 200px;
    }

    .treasury-icon::before {
        width: 240px;
        height: 240px;
    }

    .treasury-icon::after {
        width: 300px;
        height: 300px;
    }

    .why-cards {
        gap: 50px;
    }

    .why-card {
        padding: 28px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    .navbar {
        padding: 16px 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-container {
        padding: 40px 20px;
    }
    
    .treasury-icon svg {
        width: 160px;
        height: 160px;
    }
    
    .treasury-icon::before {
        width: 190px;
        height: 190px;
    }
    
    .treasury-icon::after {
        width: 240px;
        height: 240px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .why-content {
        gap: 40px;
    }

    .why-visual-top {
        margin-bottom: 60px;
    }

    .treasury-icon svg {
        width: 160px;
        height: 160px;
    }

    .treasury-icon::before {
        width: 190px;
        height: 190px;
    }

    .treasury-icon::after {
        width: 240px;
        height: 240px;
    }

    .why-cards {
        gap: 45px;
    }

    .why-card {
        padding: 24px;
        max-width: 100%;
    }

    .why-card-title {
        font-size: 1.2rem;
    }

    .why-card-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .how-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leaderboard-list {
        gap: 15px;
    }

    .leaderboard-item {
        padding: 20px 24px;
    }
}
