/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #141414;
    --text-primary: #e8e8e8;
    --text-secondary: #888;
    --text-muted: #555;
    --lime: #39ff14;
    --lime-dim: #1a8a0a;
    --lime-glow: rgba(57, 255, 20, 0.3);
    --lime-subtle: rgba(57, 255, 20, 0.08);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(57, 255, 20, 0.2);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== ALIEN EYES ===== */
.alien-eyes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.alien-eye {
    position: absolute;
    width: 6px;
    height: 14px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime), 0 0 20px var(--lime-glow), 0 0 40px rgba(57, 255, 20, 0.1);
    opacity: 0;
    animation: eyeAppear 4s ease-in-out infinite;
}

.alien-eye::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

.alien-eye-pair {
    position: absolute;
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: eyePairAppear var(--duration, 6s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes eyeAppear {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    30%, 70% { opacity: 0.7; transform: scale(1); }
}

@keyframes eyePairAppear {
    0%, 100% { opacity: 0; transform: scale(0.8) translateY(5px); }
    15%, 60% { opacity: 0.6; transform: scale(1) translateY(0); }
    75% { opacity: 0.3; transform: scale(1.05) translateY(-2px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.brand-icon {
    font-size: 24px;
    color: var(--lime);
    filter: drop-shadow(0 0 8px var(--lime-glow));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 8px var(--lime-glow)); }
    50% { filter: drop-shadow(0 0 16px var(--lime)); }
}

.brand-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.highlight {
    color: var(--lime);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--lime-subtle);
}

.nav-link.active {
    color: var(--lime);
    background: var(--lime-subtle);
}

/* ===== PAGES ===== */
.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.highlight-glow {
    color: var(--lime);
    text-shadow: 0 0 20px var(--lime-glow), 0 0 40px rgba(57, 255, 20, 0.15);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px var(--lime-glow), 0 0 40px rgba(57, 255, 20, 0.1); }
    to { text-shadow: 0 0 30px var(--lime-glow), 0 0 60px rgba(57, 255, 20, 0.2), 0 0 80px rgba(57, 255, 20, 0.05); }
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--lime);
    color: #000;
    box-shadow: 0 0 20px var(--lime-glow), 0 4px 20px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--lime-glow), 0 8px 30px rgba(0,0,0,0.4);
}

.btn-primary .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
    animation: glowSweep 0.6s ease-out;
}

@keyframes glowSweep {
    from { transform: translateX(-30%) translateY(-30%); }
    to { transform: translateX(30%) translateY(30%); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbRotate var(--speed, 8s) linear infinite;
}

.orb-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(57, 255, 20, 0.15);
    --speed: 12s;
}

.orb-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(57, 255, 20, 0.25);
    --speed: 8s;
    animation-direction: reverse;
}

.orb-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(57, 255, 20, 0.4);
    --speed: 5s;
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lime-dim) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: corePulse 3s ease-in-out infinite;
}

.orb-symbol {
    font-size: 32px;
    color: var(--lime);
    filter: drop-shadow(0 0 10px var(--lime));
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.6s ease forwards;
    animation-delay: var(--delay);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px var(--lime-subtle);
}

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== VIP SECTION ===== */
.vip-section {
    padding: 80px 40px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.vip-header {
    text-align: center;
    margin-bottom: 48px;
}

.vip-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.vip-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
}

.vip-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* VIP Qualification Banner */
.vip-qualify-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.18);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vip-qualify-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.vip-qualify-banner:hover {
    border-color: rgba(57, 255, 20, 0.35);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.06);
}

.vip-qualify-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
}

.vip-qualify-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.vip-qualify-text p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
}

/* VIP Perks Grid */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(24px);
    animation: cardReveal 0.55s ease forwards;
    animation-delay: var(--delay);
    position: relative;
    overflow: hidden;
}

.vip-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.vip-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px var(--lime-subtle);
}

.vip-card:hover::after {
    opacity: 1;
}

.vip-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    margin-bottom: 16px;
    transition: background 0.3s, box-shadow 0.3s;
}

.vip-card:hover .vip-card-icon {
    background: rgba(57, 255, 20, 0.15);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

.vip-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.vip-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
}

.social-inner {
    max-width: 500px;
    margin: 0 auto;
}

.social-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-discord::before {
    background: linear-gradient(135deg, rgba(88,101,242,0.15) 0%, transparent 70%);
}

.social-twitter::before {
    background: linear-gradient(135deg, rgba(29,161,242,0.12) 0%, transparent 70%);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-discord:hover {
    border-color: rgba(88, 101, 242, 0.5);
    color: #7289da;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.15);
}

.social-twitter:hover {
    border-color: rgba(29, 161, 242, 0.5);
    color: #1da1f2;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.12);
}

/* ===== PARTNERSHIP ===== */
.partnership {
    text-align: center;
    padding: 100px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.partnership-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.code-display {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from { border-color: rgba(57, 255, 20, 0.2); box-shadow: 0 0 10px rgba(57, 255, 20, 0.05); }
    to { border-color: rgba(57, 255, 20, 0.5); box-shadow: 0 0 20px rgba(57, 255, 20, 0.1); }
}

.code-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--lime);
}

.code-copy {
    padding: 6px 14px;
    background: var(--lime-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 6px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.code-copy:hover {
    background: var(--lime);
    color: #000;
}

/* ===== LEADERBOARD ===== */
.leaderboard-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 48px;
}

.leaderboard-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 12px;
}

.leaderboard-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.leaderboard-container {
    position: relative;
}

/* Loading */
.leaderboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--lime);
    animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    inset: 6px;
    border-top-color: rgba(57, 255, 20, 0.5);
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    inset: 12px;
    border-top-color: rgba(57, 255, 20, 0.3);
    animation-duration: 2.4s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.leaderboard-loading p {
    font-size: 14px;
    color: var(--text-secondary);
}

.leaderboard-error {
    text-align: center;
    padding: 60px;
    color: var(--text-secondary);
}

/* Top 3 */
.leaderboard-top3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.top3-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}

.top3-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.top3-card:hover::before {
    opacity: 1;
}

.top3-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== MEDAL BADGES ===== */
.medal-wrapper {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    z-index: 10;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    animation: medalDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: var(--delay, 0s);
}

.medal-badge {
    width: 100%;
    height: 100%;
}

.medal-gold {
    animation: medalSwing 3s ease-in-out infinite;
    animation-delay: 0.8s;
    transform-origin: 30px 10px;
}

.medal-silver {
    animation: medalSwing 3.4s ease-in-out infinite;
    animation-delay: 1.1s;
    transform-origin: 30px 10px;
}

.medal-bronze {
    animation: medalSwing 3.8s ease-in-out infinite;
    animation-delay: 1.4s;
    transform-origin: 30px 10px;
}

@keyframes medalDrop {
    0% { opacity: 0; transform: translateX(-50%) translateY(-30px) scale(0.5) rotate(-15deg); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1) rotate(0deg); }
}

@keyframes medalSwing {
    0%, 100% { transform: rotate(-6deg); }
    50% { transform: rotate(6deg); }
}

.top3-card {
    position: relative;
    padding-top: 52px;
}

.top3-card.gold {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.12);
    order: 0;
}

.top3-card.silver {
    border-color: rgba(192, 192, 192, 0.45);
    box-shadow: 0 0 14px rgba(192, 192, 192, 0.1);
}

.top3-card.bronze {
    border-color: rgba(205, 127, 50, 0.45);
    box-shadow: 0 0 14px rgba(205, 127, 50, 0.1);
}

.top3-card.gold .top3-rank {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.top3-card.silver .top3-rank {
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.6);
}

.top3-card.bronze .top3-rank {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.6);
}

.top3-card.gold .top3-rank {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.top3-card.silver { order: 1; }
.top3-card.bronze { order: 2; }

.top3-rank {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--lime);
    margin-bottom: 12px;
}

.top3-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    word-break: break-all;
}

.top3-volume {
    font-size: 12px;
    color: var(--text-secondary);
}

.top3-volume span {
    color: var(--lime);
    font-weight: 600;
}

.top3-prize {
    font-size: 12px;
    color: #ffd700;
    font-weight: 700;
    margin-top: 6px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Leaderboard List */
.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lb-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    animation-delay: var(--delay, 0s);
}

.lb-row:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.lb-rank {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.lb-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-volume {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: right;
}

.lb-volume span {
    color: var(--lime);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 2;
    padding: 24px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.footer-divider {
    color: var(--text-muted);
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .brand-text {
        font-size: 13px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .vip-section {
        padding: 60px 20px 80px;
    }

    .vip-grid {
        grid-template-columns: 1fr;
    }

    .vip-qualify-banner {
        flex-direction: column;
        padding: 24px 20px;
    }

    .social-section {
        padding: 40px 20px;
    }

    .features {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }

    .partnership {
        padding: 60px 20px;
    }

    .code-display {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .leaderboard-section {
        padding: 40px 16px;
    }

    .leaderboard-top3 {
        grid-template-columns: 1fr;
    }

    .top3-card.gold { order: 0; }
    .top3-card.silver { order: 1; }
    .top3-card.bronze { order: 2; }

    .lb-row {
        grid-template-columns: 45px 1fr auto;
        padding: 12px 14px;
    }

    .lb-name {
        font-size: 13px;
    }

    .footer {
        padding: 20px;
    }

    .orb-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--lime-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lime);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--lime);
    color: #000;
}

/* ===== RAKEBACK HINT ===== */
.social-rakeback-hint {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: hintFadeIn 1s ease 0.5s both;
}

.rakeback-highlight {
    color: var(--lime);
    font-weight: 700;
    text-shadow: 0 0 10px var(--lime-glow);
}

.rakeback-sparkle {
    color: var(--lime);
    font-size: 10px;
    opacity: 0.7;
    animation: sparklePulse 2s ease-in-out infinite;
}

.rakeback-sparkle:last-child {
    animation-delay: 1s;
}

@keyframes sparklePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes hintFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}