@font-face {
    font-family: "Albertus Nova";
    src: url("../fonts/AlbertusNova.woff2") format("woff2"),
         url("../fonts/AlbertusNova.woff") format("woff"),
         url("../fonts/AlbertusNova.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Albertus Nova";
    src: url("../fonts/AlbertusNova-Bold.woff2") format("woff2"),
         url("../fonts/AlbertusNova-Bold.woff") format("woff"),
         url("../fonts/AlbertusNova-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary-gold: #c8d4c0;
    --accent-gold: #2a9d6a;
    --dark-bg: #01140e;
    --dark-secondary: #021a12;
    --dark-tertiary: #011910;
    --text-main: #c5d4c0;
    --text-dim: #8fa08a;
    --text-very-dim: #5a6e5a;
    --frame-bronze: #1e3c2d;
    --frame-bronze-light: #2a5a40;
    --frame-bronze-dark: #0a2015;
    --frame-bronze-deep: #061a0e;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Protection */
.landing-wrapper {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

img { -webkit-user-drag: none; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(1, 20, 14, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(42, 157, 106, 0.3);
}

.navbar-brand img {
    height: 32px;
    filter: drop-shadow(0 2px 8px rgba(42, 157, 106, 0.3));
}

.navbar-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-links a:hover { color: var(--accent-gold); }

/* Navbar right side */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: 30px;
}

.nav-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f0c24a 0%, #e0a82e 100%);
    color: #1a1005 !important;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(240, 194, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.nav-register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(240, 194, 74, 0.45);
    background: linear-gradient(135deg, #f5cd5a 0%, #f0c24a 100%);
}

.nav-register-btn i { font-size: 14px; }

.nav-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    background: transparent;
    color: var(--accent-gold, #f0c24a) !important;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border-radius: 6px;
    border: 1px solid rgba(240, 194, 74, 0.55);
    transition: all 0.3s ease;
}

.nav-website-btn:hover {
    transform: translateY(-1px);
    border-color: #f0c24a;
    background: rgba(240, 194, 74, 0.1);
    box-shadow: 0 4px 15px rgba(240, 194, 74, 0.2);
}

.nav-website-btn i { font-size: 14px; }

.nav-hamburger {
    display: none;
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger:hover { color: var(--accent-gold); }

/* Language Sub-bar */
.lang-subnav {
    position: fixed;
    top: 61px;
    right: 30px;
    z-index: 999;
}

.lang-subnav-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.lang-subnav-inner {
    background: rgba(1, 20, 14, 0.98);
    border: 1px solid rgba(42, 157, 106, 0.18);
    border-top: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    border-radius: 0 0 8px 8px;
}

.lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(42, 157, 106, 0.25);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.lang-toggle:hover {
    color: var(--accent-gold);
}

.lang-label {
    color: var(--text-very-dim);
    margin-right: 4px;
}

.lang-current-name {
    font-size: 13px;
}

.lang-chevron {
    transition: transform 0.35s ease;
    opacity: 0.6;
}

.lang-chevron.rotated {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(1, 20, 14, 0.98);
    border: 1px solid rgba(42, 157, 106, 0.18);
    border-top: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 999;
    border-radius: 0 0 8px 8px;
}

.lang-options.open {
    max-height: 500px;
    opacity: 1;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(42, 157, 106, 0.08);
    transition: color 0.2s, background 0.2s;
}

.lang-option:hover {
    color: var(--accent-gold);
    background: rgba(42, 157, 106, 0.06);
}

.lang-option.active {
    color: var(--accent-gold);
    background: rgba(42, 157, 106, 0.1);
}

@media (max-width: 968px) {
    .navbar-right { right: 15px; }
    .lang-label { display: none; }
    .lang-current-name { display: none; }
    .lang-subnav { right: 15px; }
    .nav-hamburger { display: block; }

    /* Collapsed menu opens as a dropdown panel under the navbar */
    .navbar-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(1, 20, 14, 0.98);
        border-bottom: 1px solid rgba(42, 157, 106, 0.3);
        padding: 8px 0;
    }

    .navbar-links.open { display: flex; }

    .navbar-links li { text-align: center; }

    .navbar-links a {
        display: block;
        padding: 14px 25px;
    }
}

@media (max-width: 480px) {
    .nav-register-btn span { display: none; }
    .nav-website-btn span { display: none; }
    .navbar-right { right: 10px; gap: 8px; }
    .lang-subnav { right: 10px; }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-gold) 50%, var(--accent-gold) 100%);
    z-index: 1100;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(42, 157, 106, 0.5);
}

/* ============ FIREFLIES ============ */
.fireflies {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 60vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Hero-local fireflies */
.hero-fireflies {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-firefly {
    position: absolute;
    border-radius: 50%;
    animation: hero-ff-drift ease-in-out infinite;
    will-change: transform, opacity;
    opacity: 0.3;
}

.hero-firefly.gold {
    background: radial-gradient(circle, rgba(232, 196, 90, 1) 0%, rgba(232, 196, 90, 0.6) 30%, rgba(212, 168, 67, 0.2) 60%, transparent 80%);
    box-shadow: 0 0 12px rgba(232, 196, 90, 0.9), 0 0 30px rgba(232, 196, 90, 0.5), 0 0 50px rgba(212, 168, 67, 0.2);
}

.hero-firefly.green {
    background: radial-gradient(circle, rgba(42, 200, 130, 1) 0%, rgba(42, 180, 120, 0.5) 30%, rgba(42, 157, 106, 0.15) 60%, transparent 80%);
    box-shadow: 0 0 12px rgba(42, 200, 130, 0.8), 0 0 30px rgba(42, 180, 120, 0.4), 0 0 50px rgba(42, 157, 106, 0.15);
}

.hero-firefly:nth-child(1)  { width: 8px;  height: 8px;  left: 8%;  top: 18%; animation-duration: 12s;  animation-delay: 0s; }
.hero-firefly:nth-child(2)  { width: 6px;  height: 6px;  left: 15%; top: 60%; animation-duration: 9s;   animation-delay: 1.2s; }
.hero-firefly:nth-child(3)  { width: 10px; height: 10px; left: 25%; top: 30%; animation-duration: 14s;  animation-delay: 0.5s; }
.hero-firefly:nth-child(4)  { width: 5px;  height: 5px;  left: 35%; top: 75%; animation-duration: 10s;  animation-delay: 2s; }
.hero-firefly:nth-child(5)  { width: 8px;  height: 8px;  left: 48%; top: 15%; animation-duration: 13s;  animation-delay: 0.8s; }
.hero-firefly:nth-child(6)  { width: 6px;  height: 6px;  left: 55%; top: 50%; animation-duration: 10s;  animation-delay: 1.5s; }
.hero-firefly:nth-child(7)  { width: 10px; height: 10px; left: 65%; top: 25%; animation-duration: 12s;  animation-delay: 0.3s; }
.hero-firefly:nth-child(8)  { width: 5px;  height: 5px;  left: 72%; top: 65%; animation-duration: 11s;  animation-delay: 2.5s; }
.hero-firefly:nth-child(9)  { width: 8px;  height: 8px;  left: 82%; top: 35%; animation-duration: 13s;  animation-delay: 1s; }
.hero-firefly:nth-child(10) { width: 6px;  height: 6px;  left: 90%; top: 55%; animation-duration: 9s;   animation-delay: 1.8s; }
.hero-firefly:nth-child(11) { width: 7px;  height: 7px;  left: 42%; top: 80%; animation-duration: 11s;  animation-delay: 3s; }
.hero-firefly:nth-child(12) { width: 5px;  height: 5px;  left: 20%; top: 45%; animation-duration: 10s;  animation-delay: 0.6s; }
.hero-firefly:nth-child(13) { width: 9px;  height: 9px;  left: 78%; top: 12%; animation-duration: 14s;  animation-delay: 2.2s; }
.hero-firefly:nth-child(14) { width: 6px;  height: 6px;  left: 5%;  top: 40%; animation-duration: 12s;  animation-delay: 1.4s; }
.hero-firefly:nth-child(15) { width: 7px;  height: 7px;  left: 60%; top: 70%; animation-duration: 10s;  animation-delay: 0.9s; }
.hero-firefly:nth-child(16) { width: 5px;  height: 5px;  left: 93%; top: 22%; animation-duration: 13s;  animation-delay: 3.2s; }

@keyframes hero-ff-drift {
    0%   { transform: translate(0, 0) scale(1);       opacity: 0.3; }
    15%  { transform: translate(20px, -30px) scale(0.7);  opacity: 1; }
    30%  { transform: translate(-15px, -55px) scale(1.15); opacity: 0.8; }
    45%  { transform: translate(30px, -20px) scale(0.6);  opacity: 0.4; }
    60%  { transform: translate(-25px, -45px) scale(1.1);  opacity: 1; }
    75%  { transform: translate(10px, -60px) scale(0.8);  opacity: 0.6; }
    90%  { transform: translate(-10px, -10px) scale(1.05); opacity: 0.9; }
    100% { transform: translate(0, 0) scale(1);       opacity: 0.3; }
}

.firefly {
    position: absolute;
    width: 6px; height: 6px;
    background: radial-gradient(circle, rgba(42, 157, 106, 0.9) 0%, rgba(42, 157, 106, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: firefly-float 8s ease-in-out infinite, firefly-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(42, 157, 106, 0.6);
    will-change: transform, opacity;
}

.firefly:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.firefly:nth-child(2) { left: 20%; top: 40%; animation-delay: 1s; animation-duration: 9s; }
.firefly:nth-child(3) { left: 30%; top: 15%; animation-delay: 2s; animation-duration: 6s; }
.firefly:nth-child(4) { left: 40%; top: 35%; animation-delay: 0.5s; animation-duration: 8s; }
.firefly:nth-child(5) { left: 50%; top: 25%; animation-delay: 1.5s; animation-duration: 7.5s; }
.firefly:nth-child(6) { left: 60%; top: 45%; animation-delay: 2.5s; animation-duration: 6.5s; }
.firefly:nth-child(7) { left: 70%; top: 20%; animation-delay: 0.8s; animation-duration: 8.5s; }
.firefly:nth-child(8) { left: 80%; top: 30%; animation-delay: 1.8s; animation-duration: 7.2s; }
.firefly:nth-child(9) { left: 85%; top: 50%; animation-delay: 3s; animation-duration: 9.5s; }
.firefly:nth-child(10) { left: 15%; top: 55%; animation-delay: 2.2s; animation-duration: 6.8s; }
.firefly:nth-child(11) { left: 45%; top: 10%; animation-delay: 0.3s; animation-duration: 7.8s; }
.firefly:nth-child(12) { left: 75%; top: 55%; animation-delay: 1.2s; animation-duration: 8.2s; }

@keyframes firefly-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(0.8); }
    50% { transform: translate(-15px, -50px) scale(1.1); }
    75% { transform: translate(25px, -20px) scale(0.9); }
}

@keyframes firefly-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============ HERO SECTION ============ */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 90px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(1, 20, 14, 0.6) 0%, rgba(1, 20, 14, 0.2) 10%, rgba(1, 20, 14, 0) 25%, rgba(1, 20, 14, 0) 50%, rgba(1, 20, 14, 0.6) 80%, var(--dark-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
    width: 100%;
    padding: 60px 80px;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -40px;
    top: -90px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
    mask-image: linear-gradient(180deg, black 0%, black 80%, transparent 100%);
    z-index: -1;
}

.hero-logo {
    max-width: 480px;
    width: 100%;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.7));
}

.hero-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #e8c45a;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 46px;
    font-family: 'Albertus Nova', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #e8f0e8;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 0.8);
}

.hero-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    padding: 10px 22px;
    letter-spacing: 0.3px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
    clip-path: polygon(4% 15%, 12% 3%, 28% 10%, 45% 0%, 62% 8%, 78% 2%, 92% 12%, 98% 25%, 100% 50%, 97% 78%, 90% 95%, 75% 100%, 55% 92%, 38% 100%, 20% 94%, 8% 100%, 1% 82%, 0% 55%, 2% 30%);
}

.hero-highlight-item:nth-child(2) {
    clip-path: polygon(3% 20%, 10% 5%, 25% 12%, 42% 0%, 60% 6%, 80% 2%, 94% 10%, 100% 30%, 98% 58%, 100% 80%, 93% 96%, 78% 100%, 58% 90%, 42% 98%, 22% 92%, 8% 100%, 1% 85%, 0% 60%, 3% 35%);
}

.hero-highlight-item:nth-child(3) {
    clip-path: polygon(2% 18%, 14% 2%, 30% 8%, 48% 0%, 65% 10%, 82% 3%, 96% 15%, 100% 40%, 97% 65%, 100% 85%, 92% 98%, 72% 100%, 52% 93%, 35% 100%, 18% 95%, 5% 100%, 0% 78%, 2% 48%);
}

.hero-highlight-item:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-2px);
}

.hero-highlight-kanji {
    font-family: 'Noto Serif SC', serif;
    font-size: 16px;
    line-height: 1;
    color: #d4a843;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ============ COUNTDOWN ============ */
.hero-countdown {
    margin-bottom: 16px;
    text-align: center;
}

.countdown-label {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e8c45a;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.countdown-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(42, 157, 106, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 68px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    transition: border-color 0.3s ease;
}

.countdown-box:hover {
    border-color: rgba(42, 157, 106, 0.5);
}

.countdown-value {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.countdown-unit {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-top: 4px;
}

.countdown-sep {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 22px;
    color: #d4a843;
    opacity: 0.5;
    line-height: 1;
}

.countdown-ended {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 18px;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(42, 157, 106, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: stretch;
}

.hero-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #8b2020 0%, #a62828 100%);
    border: 1px solid rgba(200, 60, 60, 0.4);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(166, 40, 40, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 40, 40, 0.4);
    background: linear-gradient(135deg, #9b2525 0%, #b83030 100%);
    color: #fff;
    text-decoration: none;
}

.hero-download-icon {
    width: 20px; height: 20px;
    stroke: #fff;
    flex-shrink: 0;
}

.landing-btn {
    padding: 14px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.landing-btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--accent-gold);
}

.landing-btn-secondary:hover {
    background: rgba(42, 157, 106, 0.1);
    transform: translateY(-2px);
    color: var(--primary-gold);
    text-decoration: none;
}

/* Hero register button */
.hero-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #228b58 0%, #1a6b45 100%);
    border: 1px solid rgba(42, 157, 106, 0.5);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(42, 157, 106, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 106, 0.35);
    background: linear-gradient(135deg, #2a9d6a 0%, #228b58 100%);
    color: #fff;
    text-decoration: none;
}

.hero-register-btn i { font-size: 15px; }

/* ============ SECTION COMMON ============ */
.landing-section-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 32px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.landing-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.landing-ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.5), transparent);
}

.landing-ornament-diamond {
    color: var(--accent-gold);
    font-size: 12px;
    opacity: 0.7;
}

/* ============ REFERRAL CODE SECTION ============ */
.referral-section {
    padding: 80px 0;
    position: relative;
    background: url('../assets/images/referral-bg.png') center center / cover no-repeat;
}

.referral-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.35), transparent) top / 100% 1px no-repeat,
        linear-gradient(180deg, var(--dark-bg) 0%, rgba(1, 20, 14, 0.92) 8%, rgba(1, 20, 14, 0.9) 92%, var(--dark-bg) 100%);
    z-index: 0;
}

.referral-section > .container {
    position: relative;
    z-index: 1;
}

.referral-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(2, 30, 20, 0.8) 0%, rgba(1, 25, 16, 0.6) 100%);
    border: 1px solid rgba(42, 157, 106, 0.25);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.referral-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.referral-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 16px;
}

.referral-code-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(42, 157, 106,0.08), rgba(42, 180, 120,0.08));
    border: 2px dashed rgba(42, 180, 120,0.4);
    border-radius: 8px;
    padding: 20px 40px;
    margin: 0 auto 20px;
    display: inline-block;
}

.referral-code {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 12px;
    text-shadow: 0 0 20px rgba(42, 157, 106, 0.4);
}

.referral-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 25px;
}

.referral-description strong {
    color: var(--accent-gold);
}

.referral-bonus-badge {
    text-align: center;
    margin-bottom: 25px;
}

.referral-bonus-badge span {
    display: inline-block;
    background-color: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 8px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #22c55e;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.reward-item {
    background: rgba(1, 20, 14, 0.6);
    border: 1px solid rgba(42, 157, 106, 0.12);
    border-radius: 8px;
    padding: 14px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.reward-item img {
    width: 44px; height: 44px;
    display: block;
    margin: 0 auto 8px;
    border-radius: 6px;
    background: #050505;
    border: 1px solid var(--frame-bronze);
    padding: 3px;
}

.reward-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}

.reward-item-qty {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-dim);
}

/* ============ EARN MONEY SECTION ============ */
.earn-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.earn-highlight {
    color: #e8c45a;
    font-weight: 700;
}

/* Steps */
.earn-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.earn-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 20px 30px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(18, 30, 12, 0.05) 0%, rgba(18, 30, 12, 0.2) 40%, rgba(18, 30, 12, 0.75) 60%, rgba(5, 35, 22, 0.97) 80%, rgba(5, 35, 22, 0.99) 100%), url('../assets/images/scene/village.png') center center/cover no-repeat;
    border: none;
    position: relative;
    transition: all 0.4s ease;
    clip-path: polygon(3% 8%, 12% 2%, 25% 6%, 38% 1%, 52% 4%, 68% 0%, 82% 5%, 93% 2%, 98% 10%, 100% 22%, 97% 38%, 99% 55%, 97% 72%, 100% 85%, 96% 94%, 88% 99%, 72% 96%, 58% 100%, 42% 97%, 28% 100%, 14% 96%, 5% 99%, 1% 90%, 0% 75%, 2% 58%, 0% 42%, 3% 28%, 1% 15%);
}

.earn-step:nth-child(2) {
    background: linear-gradient(180deg, rgba(18, 30, 12, 0.05) 0%, rgba(18, 30, 12, 0.2) 40%, rgba(18, 30, 12, 0.75) 60%, rgba(5, 35, 22, 0.97) 80%, rgba(5, 35, 22, 0.99) 100%), url('../assets/images/scene/temple.png') center center/cover no-repeat;
    clip-path: polygon(5% 5%, 18% 1%, 32% 7%, 48% 2%, 62% 5%, 78% 0%, 88% 4%, 96% 8%, 100% 18%, 98% 35%, 100% 52%, 97% 68%, 99% 82%, 96% 92%, 90% 98%, 75% 95%, 60% 99%, 44% 96%, 30% 100%, 16% 97%, 6% 100%, 1% 92%, 0% 78%, 2% 62%, 0% 45%, 3% 30%, 1% 16%, 4% 6%);
}

.earn-step:nth-child(3) {
    background: linear-gradient(180deg, rgba(18, 30, 12, 0.05) 0%, rgba(18, 30, 12, 0.2) 40%, rgba(18, 30, 12, 0.75) 60%, rgba(5, 35, 22, 0.97) 80%, rgba(5, 35, 22, 0.99) 100%), url('../assets/images/scene/camp.png') center center/cover no-repeat;
    clip-path: polygon(2% 10%, 10% 3%, 22% 7%, 40% 0%, 55% 5%, 70% 1%, 85% 6%, 95% 3%, 99% 12%, 97% 28%, 100% 45%, 98% 60%, 100% 78%, 96% 90%, 92% 97%, 78% 100%, 62% 95%, 48% 98%, 32% 95%, 18% 99%, 8% 96%, 2% 92%, 0% 80%, 3% 62%, 1% 48%, 0% 32%, 2% 18%);
}

.earn-step:hover {
    transform: translateY(-4px);
}

.earn-step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #1a3d2a, #0a2015);
    color: #e8c45a;
    font-family: 'Albertus Nova', sans-serif;
    font-size: 17px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid #d4a843;
    box-shadow: 0 0 10px rgba(232, 196, 90, 0.3), 0 4px 10px rgba(0,0,0,0.5);
    text-shadow: 0 1px 0 rgba(255, 240, 180, 0.4), 0 -1px 0 rgba(0,0,0,0.6);
}

.earn-step-icon {
    font-size: 44px;
    color: #e8c45a;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.earn-step-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 15px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.earn-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.earn-step-desc strong {
    color: #e8c45a;
}

.earn-cta {
    text-align: center;
    padding-top: 5px;
}

.promoter-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #c0392b;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s, transform 0.2s;
}

.promoter-apply-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
}

.promoter-apply-btn i {
    font-size: 16px;
}

.earn-cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 14px;
}

.earn-cta-note strong { color: var(--primary-gold); }

/* Render + Intro Row */
.earn-hero-row {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

/* Bottom row: render left + info right */
.earn-bottom-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.earn-bottom-row::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    right: -3%;
    height: 70%;
    background: transparent;
    border: 2px solid rgba(42, 157, 106, 0.4);
    border-left: 3px solid rgba(42, 157, 106, 0.5);
    border-right: 1px solid rgba(42, 157, 106, 0.2);
    border-radius: 80% 30% 40% 70% / 60% 50% 50% 40%;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(42, 157, 106, 0.08), inset 0 0 15px rgba(42, 157, 106, 0.03);
}

.earn-bottom-row::after {
    content: '';
    position: absolute;
    top: 22%;
    left: 23%;
    right: 0%;
    height: 56%;
    background: transparent;
    border: 1px solid rgba(42, 157, 106, 0.2);
    border-radius: 40% 70% 30% 60% / 50% 40% 60% 50%;
    z-index: 0;
    pointer-events: none;
}

.earn-bottom-render {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.earn-bottom-render img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.4));
}

.earn-bottom-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.earn-bottom-info h3 {
    font-family: 'Albertus Nova', sans-serif;
    color: #e8c45a;
    font-size: 22px;
    margin: 0;
}

.earn-bottom-info .earn-bottom-desc {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.7;
    max-width: 380px;
}

.earn-bottom-info .earn-bottom-desc strong {
    color: var(--accent-gold);
}

.earn-intro {
    flex: 1;
}

.earn-intro-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 26px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.earn-intro-title span { color: #e8c45a; }

.earn-intro-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.earn-intro-desc strong { color: #e8c45a; }

.earn-intro-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.earn-mini-stat {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(42, 157, 106, 0.15);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    min-width: 100px;
}

.earn-mini-value {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline;
}

.earn-mini-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #e8c45a;
    font-weight: 600;
    display: inline;
}

.earn-mini-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* Milestone Tiers */
.earn-tiers-section {
    margin-bottom: 40px;
    text-align: center;
}

.earn-tiers-heading {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.earn-tiers-heading i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.earn-tiers-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.earn-tiers-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0 10px;
}

.earn-tier-line {
    position: absolute;
    top: 20px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 157, 106, 0.15), rgba(42, 157, 106, 0.35), rgba(232, 196, 90, 0.4));
    z-index: 0;
}

.earn-tier-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 140px;
}

.earn-tier-circle {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: url('../assets/images/slot-normal.png') no-repeat center;
    background-size: contain;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Albertus Nova', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.earn-tier-circle:hover {
    transform: scale(1.08);
}

.earn-tier-circle.active {
    filter: brightness(1.2);
}

.earn-tier-circle.legendary {
    background-image: url('../assets/images/slot-premium.png');
    color: #e8c45a;
    filter: drop-shadow(0 0 8px rgba(232, 196, 90, 0.4));
}

.earn-tier-circle.legendary:hover {
    filter: drop-shadow(0 0 14px rgba(232, 196, 90, 0.6)) brightness(1.2);
}

.earn-tier-info { text-align: center; }

.earn-tier-reward {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2px;
}

.earn-tier-reward.legendary-text { color: #e8c45a; }

.earn-tier-item {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-dim);
}

/* Monthly Ranking */
.earn-ranking {
    margin-bottom: 35px;
    text-align: center;
}

.earn-ranking-table {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.earn-rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(5, 35, 22, 0.93) 0%, rgba(8, 45, 28, 0.88) 100%);
    border: none;
    transition: all 0.3s ease;
    clip-path: polygon(1% 15%, 5% 4%, 15% 8%, 28% 0%, 42% 6%, 58% 1%, 72% 7%, 85% 0%, 95% 5%, 99% 14%, 100% 35%, 99% 60%, 100% 82%, 97% 95%, 88% 100%, 72% 94%, 58% 100%, 42% 95%, 28% 100%, 15% 94%, 5% 100%, 1% 92%, 0% 72%, 1% 48%, 0% 28%);
}

.earn-rank-row:nth-child(2) {
    clip-path: polygon(2% 12%, 8% 2%, 20% 9%, 35% 0%, 50% 5%, 65% 1%, 80% 8%, 92% 0%, 98% 10%, 100% 30%, 99% 55%, 100% 78%, 97% 94%, 90% 100%, 75% 93%, 60% 99%, 45% 94%, 30% 100%, 18% 95%, 7% 100%, 1% 88%, 0% 65%, 2% 40%, 0% 20%);
}

.earn-rank-row:nth-child(3) {
    clip-path: polygon(0% 18%, 6% 5%, 18% 10%, 32% 0%, 48% 7%, 62% 2%, 78% 6%, 90% 0%, 97% 8%, 100% 25%, 98% 50%, 100% 75%, 96% 92%, 85% 100%, 70% 95%, 55% 100%, 40% 96%, 25% 100%, 12% 93%, 4% 98%, 0% 85%, 1% 60%, 0% 35%);
}

.earn-rank-row:hover {
    transform: translateY(-2px);
}

.earn-rank-row.rank-gold {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(5, 35, 22, 0.93) 40%), url('../assets/images/scene/temple.png') center/cover no-repeat;
}

.earn-rank-row.rank-silver {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.07), rgba(5, 35, 22, 0.93) 40%), url('../assets/images/scene/village.png') center/cover no-repeat;
}

.earn-rank-row.rank-bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.07), rgba(5, 35, 22, 0.93) 40%), url('../assets/images/scene/camp.png') center/cover no-repeat;
}

.earn-rank-pos {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Albertus Nova', sans-serif;
    font-size: 15px;
    font-weight: 700;
    min-width: 80px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.earn-rank-pos img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.rank-gold .earn-rank-pos { color: #ffe44d; }
.rank-silver .earn-rank-pos { color: #ddd; }
.rank-bronze .earn-rank-pos { color: #e8a050; }

.earn-rank-prize {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #c8d4c0;
    flex: 1;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.earn-ranking-note {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 16px;
}

.earn-ranking-note i { margin-right: 4px; }

@media (max-width: 968px) {
    .earn-hero-row {
        flex-direction: column;
        text-align: center;
    }
    .earn-intro-stats { justify-content: center; }
    .earn-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .earn-step { max-width: 100%; width: 100%; }
    .earn-tiers-track { flex-wrap: wrap; gap: 16px; }
    .earn-tier-line { display: none; }
    .earn-tier-node { min-width: 80px; }
    .earn-bottom-row {
        flex-direction: column;
    }
    .earn-bottom-render img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .earn-subtitle { font-size: 15px; }
    .earn-intro-title { font-size: 20px; }
    .earn-intro-stats { flex-direction: column; gap: 10px; }
    .earn-rank-row { padding: 10px 14px; }
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 80px 0;
    position: relative;
    background: url('../assets/images/backgrounds/features-bg.webp') center center / cover no-repeat;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.35), transparent) top / 100% 1px no-repeat,
        linear-gradient(180deg, var(--dark-bg) 0%, rgba(1, 20, 14, 0.88) 10%, rgba(1, 20, 14, 0.85) 50%, rgba(1, 20, 14, 0.88) 90%, var(--dark-bg) 100%);
    z-index: 0;
}

.features-section > .container {
    position: relative;
    z-index: 1;
}

.slider-wrapper {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(42, 157, 106, 0.25);
    background: rgba(1, 20, 14, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide video {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: #000;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 35px;
    background: linear-gradient(180deg, transparent 0%, rgba(1, 20, 14, 0.85) 50%, rgba(1, 20, 14, 0.97) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-slide-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 20px;
    color: #e8c45a;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.slider-slide-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    z-index: 5;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(42, 157, 106, 0.3);
    background: rgba(1, 20, 14, 0.7);
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(42, 157, 106, 0.25);
    border-color: rgba(42, 157, 106, 0.5);
    color: #fff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(42, 157, 106, 0.25);
    border: 1px solid rgba(42, 157, 106, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(42, 157, 106, 0.4);
}

/* Feature Highlights */
.pvp-highlight {
    margin-top: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pvp-highlight + .pvp-highlight {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(42, 157, 106, 0.15);
}

.pvp-highlight-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 22px;
    color: var(--accent-gold);
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    font-weight: 700;
}

.pvp-highlight-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* ============ SPEED FEATURES SECTION ============ */
.speed-section {
    padding: 80px 0;
    position: relative;
    background: url('../assets/images/backgrounds/speed-bg.webp') center center / cover no-repeat;
}

.speed-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.35), transparent) top / 100% 1px no-repeat,
        linear-gradient(180deg, var(--dark-bg) 0%, rgba(1, 20, 14, 0.85) 10%, rgba(1, 20, 14, 0.82) 50%, rgba(1, 20, 14, 0.85) 90%, var(--dark-bg) 100%);
    z-index: 0;
}

.speed-section > .container {
    position: relative;
    z-index: 1;
}

.speed-render {
    position: absolute;
    bottom: 0;
    height: 90%;
    max-height: 750px;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.4));
}

.speed-render-left {
    left: 0;
}

.speed-render-right {
    right: 0;
}

@media (max-width: 1200px) {
    .speed-render { opacity: 0.15; }
}

@media (max-width: 900px) {
    .speed-render { display: none; }
}

.speed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.speed-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(2, 30, 20, 0.8) 0%, rgba(1, 20, 14, 0.6) 100%);
    border: 1px solid rgba(42, 157, 106, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.speed-item:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 157, 106, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(42, 157, 106, 0.1);
}

.speed-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 6px rgba(232, 196, 90, 0.3));
}

.speed-icon.new-icon {
    filter: drop-shadow(0 0 8px rgba(232, 196, 90, 0.4));
}

.speed-text {
    flex: 1;
    min-width: 0;
}

.speed-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 13px;
    color: #e8c45a;
    font-weight: 700;
    margin-bottom: 3px;
}

.speed-desc {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

.speed-highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ============ JOIN / REGISTER SECTION ============ */
.landing-join-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: visible;
    background: url('../assets/images/backgrounds/join-bg.webp') center center / cover no-repeat;
}

.landing-join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.35), transparent) top / 100% 1px no-repeat,
        linear-gradient(180deg, var(--dark-bg) 0%, rgba(1, 20, 14, 0.85) 10%, rgba(1, 20, 14, 0.85) 90%, var(--dark-bg) 100%);
    pointer-events: none;
    z-index: 0;
}

.landing-join-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    z-index: 10;
}

.landing-join-section .container {
    position: relative;
    z-index: 1;
}

.join-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.join-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.join-subtitle {
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 0;
    letter-spacing: 0.3px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.join-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Register Form */
.register-form-container {
    display: flex;
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    border-radius: 8px;
    position: relative;
}

.register-form-content {
    flex: 1;
    padding: 28px 28px 24px;
    min-width: 0;
    background: linear-gradient(135deg, rgba(2, 30, 20, 0.8) 0%, rgba(1, 25, 16, 0.6) 100%);
    border: 1px solid rgba(42, 157, 106, 0.25);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.join-image-side {
    width: 420px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: stretch;
    order: 2;
    overflow: visible;
    margin-left: -5px;
}

.join-hero-img {
    width: calc(100% + 80px);
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}

.join-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 20, 14, 0.95) 0%, rgba(1, 20, 14, 0.3) 25%, transparent 50%, rgba(1, 20, 14, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.join-image-text {
    text-align: center;
}

.join-image-tagline {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 22px;
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 196, 90, 0.3);
    letter-spacing: 2px;
}

.register-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.register-kanji {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    color: #d4a843;
    line-height: 1;
    opacity: 1;
}

.register-form-title {
    font-family: 'Albertus Nova', sans-serif;
    font-size: 22px;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Floating label inputs */
.floating-field {
    position: relative;
}

.floating-field .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #2a9d6a;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.landing-form .floating-field .form-input {
    padding: 22px 14px 8px 40px;
}

.floating-field label {
    position: absolute;
    left: 40px;
    top: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-dim);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 2;
    line-height: 1;
}

.floating-field .form-input:focus ~ label,
.floating-field .form-input:not(:placeholder-shown) ~ label {
    top: 6px;
    font-size: 9px;
    color: #d4a843;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.floating-field .form-input:focus ~ .input-icon {
    color: #d4a843;
}

.floating-filled label {
    top: 6px !important;
    font-size: 9px !important;
    color: #d4a843 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.partner-hint {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 4px;
    padding-left: 40px;
}

.partner-hint strong {
    color: #d4a843;
    letter-spacing: 1px;
}

.floating-field .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Register rewards strip */
.register-rewards-strip {
    background: rgba(42, 157, 106, 0.04);
    border: 1px solid rgba(42, 157, 106, 0.12);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.register-rewards-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
    text-align: center;
}

.register-rewards-icons {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.rr-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rr-item:hover {
    transform: translateY(-2px);
}

.rr-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(1, 20, 14, 0.95);
    border: 1px solid rgba(42, 157, 106, 0.3);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.rr-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.rr-item-icon {
    width: 40px; height: 40px;
    background: url('../assets/images/slot-normal.png') no-repeat center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rr-item-icon img {
    width: 26px; height: 26px;
    object-fit: contain;
}

.rr-item-bonus {
    display: none;
}

.landing-form .form-group {
    margin-bottom: 12px;
}

.landing-form .form-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(1, 20, 14, 0.6);
    border: 1px solid rgba(42, 157, 106, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.landing-form .form-input:focus {
    outline: none;
    border-color: #d4a843;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
    background: rgba(1, 20, 14, 0.8);
}

.landing-form .form-input::placeholder {
    color: var(--text-very-dim);
}

.password-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    color: var(--text-dim);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.password-toggle svg {
    width: 20px; height: 20px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox {
    width: 18px; height: 18px;
    cursor: pointer;
    accent-color: #d4a843;
}

.form-checkbox-label {
    font-size: 12px;
    color: var(--text-main);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-submit {
    width: auto;
    padding: 14px 50px;
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #d4a843 0%, #b8922e 100%);
    border: none;
    border-radius: 8px;
    color: var(--dark-bg);
    font-family: 'Albertus Nova', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover {
    background: linear-gradient(135deg, #e0b84e 0%, #d4a843 100%);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
    transform: translateY(-1px);
}

.form-message {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
}

.form-message.visible {
    display: block;
}

.form-message.success {
    background: rgba(42, 157, 106, 0.12);
    border: 1px solid rgba(42, 157, 106, 0.45);
    color: #4fc48f;
}

.form-message.error {
    background: rgba(190, 60, 60, 0.12);
    border: 1px solid rgba(190, 60, 60, 0.45);
    color: #e07a7a;
}


/* ============ FOOTER ============ */
.site-footer {
    padding: 25px 0 12px;
    background: var(--dark-bg);
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, rgba(42, 157, 106, 0.35), transparent) 1;
    width: 100%;
}

/* Footer To-Top */
.footer-totop-row {
    display: flex;
    justify-content: center;
    padding: 0 0 16px;
}

.footer-totop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(42, 157, 106, 0.35);
    background: rgba(1, 20, 14, 0.8);
    color: var(--accent-gold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.6s;
    box-shadow: 0 0 0 0 rgba(42, 157, 106, 0);
}

.footer-totop-btn:hover {
    border-color: rgba(42, 157, 106, 0.7);
    color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(42, 157, 106, 0.18);
    transform: translateY(-2px);
}

/* Animated Text Flow */
.footer-anim-text-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.anim-text-flow {
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.anim-text-flow span {
    animation-name: anim-text-flow-keys;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

@keyframes anim-text-flow-keys {
    0%   { color: #2a6b4a; }
    5%   { color: #e8c45a; }
    10%  { color: #2a9d6a; }
    15%  { color: #d4a843; }
    20%  { color: #3cb878; }
    25%  { color: #c0a060; }
    30%  { color: #2a9d6a; }
    35%  { color: #e8c45a; }
    40%  { color: #1e7a54; }
    45%  { color: #b89740; }
    50%  { color: #2a9d6a; }
    55%  { color: #d4a843; }
    60%  { color: #3cb878; }
    65%  { color: #e8c45a; }
    70%  { color: #1e7a54; }
    75%  { color: #c0a060; }
    80%  { color: #2a9d6a; }
    85%  { color: #e8c45a; }
    90%  { color: #3cb878; }
    95%  { color: #d4a843; }
    100% { color: #2a6b4a; }
}

/* Staggered animation delays for each character */
.anim-text-flow span:nth-of-type(1)  { animation-delay: -19.8s; }
.anim-text-flow span:nth-of-type(2)  { animation-delay: -19.6s; }
.anim-text-flow span:nth-of-type(3)  { animation-delay: -19.4s; }
.anim-text-flow span:nth-of-type(4)  { animation-delay: -19.2s; }
.anim-text-flow span:nth-of-type(5)  { animation-delay: -19.0s; }
.anim-text-flow span:nth-of-type(6)  { animation-delay: -18.8s; }
.anim-text-flow span:nth-of-type(7)  { animation-delay: -18.6s; }
.anim-text-flow span:nth-of-type(8)  { animation-delay: -18.4s; }
.anim-text-flow span:nth-of-type(9)  { animation-delay: -18.2s; }
.anim-text-flow span:nth-of-type(10) { animation-delay: -18.0s; }
.anim-text-flow span:nth-of-type(11) { animation-delay: -17.8s; }
.anim-text-flow span:nth-of-type(12) { animation-delay: -17.6s; }
.anim-text-flow span:nth-of-type(13) { animation-delay: -17.4s; }
.anim-text-flow span:nth-of-type(14) { animation-delay: -17.2s; }
.anim-text-flow span:nth-of-type(15) { animation-delay: -17.0s; }
.anim-text-flow span:nth-of-type(16) { animation-delay: -16.8s; }
.anim-text-flow span:nth-of-type(17) { animation-delay: -16.6s; }
.anim-text-flow span:nth-of-type(18) { animation-delay: -16.4s; }
.anim-text-flow span:nth-of-type(19) { animation-delay: -16.2s; }
.anim-text-flow span:nth-of-type(20) { animation-delay: -16.0s; }
.anim-text-flow span:nth-of-type(21) { animation-delay: -15.8s; }
.anim-text-flow span:nth-of-type(22) { animation-delay: -15.6s; }
.anim-text-flow span:nth-of-type(23) { animation-delay: -15.4s; }
.anim-text-flow span:nth-of-type(24) { animation-delay: -15.2s; }
.anim-text-flow span:nth-of-type(25) { animation-delay: -15.0s; }
.anim-text-flow span:nth-of-type(26) { animation-delay: -14.8s; }
.anim-text-flow span:nth-of-type(27) { animation-delay: -14.6s; }
.anim-text-flow span:nth-of-type(28) { animation-delay: -14.4s; }
.anim-text-flow span:nth-of-type(29) { animation-delay: -14.2s; }
.anim-text-flow span:nth-of-type(30) { animation-delay: -14.0s; }
.anim-text-flow span:nth-of-type(31) { animation-delay: -13.8s; }
.anim-text-flow span:nth-of-type(32) { animation-delay: -13.6s; }
.anim-text-flow span:nth-of-type(33) { animation-delay: -13.4s; }
.anim-text-flow span:nth-of-type(34) { animation-delay: -13.2s; }
.anim-text-flow span:nth-of-type(35) { animation-delay: -13.0s; }
.anim-text-flow span:nth-of-type(36) { animation-delay: -12.8s; }
.anim-text-flow span:nth-of-type(37) { animation-delay: -12.6s; }
.anim-text-flow span:nth-of-type(38) { animation-delay: -12.4s; }
.anim-text-flow span:nth-of-type(39) { animation-delay: -12.2s; }
.anim-text-flow span:nth-of-type(40) { animation-delay: -12.0s; }
.anim-text-flow span:nth-of-type(41) { animation-delay: -11.8s; }
.anim-text-flow span:nth-of-type(42) { animation-delay: -11.6s; }
.anim-text-flow span:nth-of-type(43) { animation-delay: -11.4s; }
.anim-text-flow span:nth-of-type(44) { animation-delay: -11.2s; }
.anim-text-flow span:nth-of-type(45) { animation-delay: -11.0s; }
.anim-text-flow span:nth-of-type(46) { animation-delay: -10.8s; }
.anim-text-flow span:nth-of-type(47) { animation-delay: -10.6s; }
.anim-text-flow span:nth-of-type(48) { animation-delay: -10.4s; }
.anim-text-flow span:nth-of-type(49) { animation-delay: -10.2s; }
.anim-text-flow span:nth-of-type(50) { animation-delay: -10.0s; }
.anim-text-flow span:nth-of-type(51) { animation-delay: -9.8s; }
.anim-text-flow span:nth-of-type(52) { animation-delay: -9.6s; }
.anim-text-flow span:nth-of-type(53) { animation-delay: -9.4s; }
.anim-text-flow span:nth-of-type(54) { animation-delay: -9.2s; }
.anim-text-flow span:nth-of-type(55) { animation-delay: -9.0s; }
.anim-text-flow span:nth-of-type(56) { animation-delay: -8.8s; }
.anim-text-flow span:nth-of-type(57) { animation-delay: -8.6s; }
.anim-text-flow span:nth-of-type(58) { animation-delay: -8.4s; }
.anim-text-flow span:nth-of-type(59) { animation-delay: -8.2s; }
.anim-text-flow span:nth-of-type(60) { animation-delay: -8.0s; }
.anim-text-flow span:nth-of-type(61) { animation-delay: -7.8s; }
.anim-text-flow span:nth-of-type(62) { animation-delay: -7.6s; }
.anim-text-flow span:nth-of-type(63) { animation-delay: -7.4s; }
.anim-text-flow span:nth-of-type(64) { animation-delay: -7.2s; }
.anim-text-flow span:nth-of-type(65) { animation-delay: -7.0s; }
.anim-text-flow span:nth-of-type(66) { animation-delay: -6.8s; }
.anim-text-flow span:nth-of-type(67) { animation-delay: -6.6s; }
.anim-text-flow span:nth-of-type(68) { animation-delay: -6.4s; }
.anim-text-flow span:nth-of-type(69) { animation-delay: -6.2s; }
.anim-text-flow span:nth-of-type(70) { animation-delay: -6.0s; }
.anim-text-flow span:nth-of-type(71) { animation-delay: -5.8s; }
.anim-text-flow span:nth-of-type(72) { animation-delay: -5.6s; }
.anim-text-flow span:nth-of-type(73) { animation-delay: -5.4s; }
.anim-text-flow span:nth-of-type(74) { animation-delay: -5.2s; }
.anim-text-flow span:nth-of-type(75) { animation-delay: -5.0s; }

/* Footer Links Row */
.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(42, 157, 106, 0.12);
    border-bottom: 1px solid rgba(42, 157, 106, 0.12);
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links-left {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s;
}

.footer-link:hover {
    color: var(--accent-gold);
}

/* Partner Icons */
.footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-partner-icon {
    display: inline-flex;
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-partner-icon:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.footer-partner-icon img {
    height: 28px;
    width: auto;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 10px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #2a3830;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-toplist {
    margin-bottom: 12px;
}

.footer-toplist a {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-toplist a:hover {
    color: var(--accent-gold);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.footer-social a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(232, 196, 90, 0.5);
}

.footer-made-by {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #2a3830;
    letter-spacing: 0.3px;
    padding-top: 8px;
    padding-bottom: 4px;
}

.footer-made-by a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-made-by a:hover {
    color: var(--accent-gold);
}

/* ============ SCROLL TO TOP ============ */
.landing-scroll-top {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn {
    width: 50px; height: 50px;
    background: var(--dark-secondary);
    border: 1px solid rgba(42, 157, 106, 0.35);
    border-radius: 50%;
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.scroll-top-btn svg {
    width: 24px; height: 24px;
}

/* ============ DISCORD WIDGET ============ */
.discord-fixed {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    background: #2f3136;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.discord-icon {
    font-size: 24px;
    color: #5865F2;
}

.discord-members {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #b5bac1;
}

.discord-join-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #5865F2;
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.discord-join-btn:hover {
    background: #4752c4;
}

@media (max-width: 768px) {
    .discord-fixed { display: none; }
}

/* ============ FADE IN ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-subtitle { font-size: 30px; }

    .speed-grid {
        grid-template-columns: 1fr;
    }

    .slider-slide-title { font-size: 16px; }
    .slider-slide-desc { font-size: 12px; }
    .slider-overlay { padding: 20px 22px; }

    .rewards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .navbar-links { display: none; }

    .join-image-side { display: none; }
    .register-form-container { flex-direction: column; }
}

@media (max-width: 640px) {
    .landing-section-title { font-size: 24px; }

    .register-form-content {
        padding: 20px 18px;
    }

    .register-form-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-card {
        padding: 25px 20px;
    }

    .referral-code {
        font-size: 28px;
        letter-spacing: 8px;
    }

    .referral-section, .features-section, .landing-join-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-logo { max-width: 320px; }

    .hero-highlights { gap: 8px; }
    .hero-highlight-item { font-size: 10px; padding: 5px 12px; }

    .hero-download-btn {
        padding: 14px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-title { font-size: 12px; letter-spacing: 2px; }
    .hero-subtitle { font-size: 24px; }
    .hero-description { font-size: 13px; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content { padding: 30px 20px; }

    .countdown-value { font-size: 20px; }
    .countdown-box { min-width: 50px; padding: 8px 10px; }
    .countdown-label { font-size: 10px; letter-spacing: 2px; }

    .landing-btn { text-align: center; }

    .join-title { font-size: 24px; }
    .join-subtitle { font-size: 12px; }

    .rr-item-icon { width: 34px; height: 34px; }
    .rr-item-icon img { width: 22px; height: 22px; }

    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .hero-logo { max-width: 260px; }
    .hero-subtitle { font-size: 20px; }
    .landing-section-title { font-size: 20px; letter-spacing: 1px; }
    .countdown-box { min-width: 45px; padding: 8px 8px; }
    .countdown-value { font-size: 18px; }
    .hero-download-btn, .hero-register-btn { padding: 12px 20px; font-size: 11px; }
}

@media (max-width: 768px) {
    .slider-wrapper { max-width: 95%; }
    .hero-content { padding: 40px 30px; }
    .register-form-content { padding: 18px 14px; }
    .landing-form .floating-field .form-input { font-size: 16px; }
}

/* Full HD+ */
@media (min-width: 1920px) {
    .container { max-width: 1400px; }
    .hero-content { max-width: 700px; }
    .hero-subtitle { font-size: 48px; }
    .hero-description { font-size: 15px; }
    .landing-section-title { font-size: 36px; }
    .join-title { font-size: 36px; }
}

/* 4K */
@media (min-width: 2560px) {
    .container { max-width: 1800px; }
    .hero-content { max-width: 850px; }
    .hero-subtitle { font-size: 56px; }
    .hero-title { font-size: 20px; letter-spacing: 6px; }
    .hero-description { font-size: 17px; max-width: 650px; }
    .hero-logo { max-width: 600px; }
    .landing-section-title { font-size: 42px; }
    .join-title { font-size: 42px; }
}
