/* ========== RESET & VARIABLES ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --lime: #c4ff00;
    --lime-glow: #e0ff33;
    --purple: #9d2eff;
    --purple-deep: #6a0dad;
    --magenta: #ff00ff;
    --black: #000000;
    --dark: #0a0a0a;
    --mid: #1a1a1a;
    --card: #151515;
    --white: #ffffff;
    --gray: #b8b8b8;
    --dim: #666666;
    --green: #00ff41;
    --warn: #ffaa00;
    --cyan: #00d9ff;
    --fire: #ff5e00;
    --font: 'Poppins', sans-serif;
    --ease: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --fast: all 0.2s ease;
    --r-sm: 10px;
    --r-md: 15px;
    --r-lg: 20px;
    --r-xl: 25px;
    --r-pill: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ========== LAYOUT ========== */
.container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.block-gap { padding: 4.5rem 0; }

.glow-lime {
    color: var(--lime);
    font-weight: 700;
    text-shadow: 0 0 25px rgba(196, 255, 0, 0.7);
}

.glow-purple {
    color: var(--purple);
    text-shadow: 0 0 25px rgba(157, 46, 255, 0.7);
}

/* ========== TOPBAR ========== */
.topbar-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--lime);
    box-shadow: 0 5px 35px rgba(196, 255, 0, 0.2);
}

.topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mark {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lime), var(--purple), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--gray);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover { color: var(--lime); }
.nav-link:hover::after { width: 100%; }

.join-button {
    background: linear-gradient(135deg, var(--lime), var(--green));
    color: var(--black);
    padding: 0.9rem 2.5rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--ease);
    box-shadow: 0 5px 30px rgba(196, 255, 0, 0.45);
}

.join-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(196, 255, 0, 0.65);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.hamburger-btn span {
    width: 28px;
    height: 3px;
    background: var(--lime);
    border-radius: 2px;
    transition: var(--fast);
}

.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== SPLASH ZONE ========== */
.splash-zone {
    margin-top: 85px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(157, 46, 255, 0.18), transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(196, 255, 0, 0.12), transparent 70%),
        var(--black);
}

.splash-zone::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 950px;
    height: 950px;
    background: radial-gradient(circle, rgba(157, 46, 255, 0.28), transparent 60%);
    border-radius: 50%;
    animation: orb-breathe 6s ease-in-out infinite;
}

.splash-zone::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.22), transparent 60%);
    border-radius: 50%;
    animation: orb-breathe 8s ease-in-out infinite reverse;
}

@keyframes orb-breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.35); opacity: 1; }
}

.splash-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.splash-copy h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

.splash-copy p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.splash-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-main {
    background: linear-gradient(135deg, var(--lime), var(--green));
    color: var(--black);
    padding: 1.2rem 3rem;
    border-radius: var(--r-pill);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--ease);
    box-shadow: 0 8px 35px rgba(196, 255, 0, 0.55);
}

.btn-main:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(196, 255, 0, 0.75);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border: 3px solid var(--purple);
    border-radius: var(--r-pill);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn-ghost:hover {
    background: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(157, 46, 255, 0.65);
}

.splash-media { position: relative; }

.splash-visual {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.35), rgba(196, 255, 0, 0.25));
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(196, 255, 0, 0.35);
    box-shadow: 0 20px 70px rgba(157, 46, 255, 0.45);
    animation: float-drift 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes float-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* ========== BLOCK HEADER ========== */
.block-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.block-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.3);
}

.block-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 850px;
    margin: 0 auto;
}

/* ========== CATALOG ========== */
.catalog-region {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.catalog-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.18);
    transition: var(--ease);
    cursor: pointer;
}

.catalog-card:hover {
    border-color: var(--lime);
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(196, 255, 0, 0.35);
}

.catalog-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 22px rgba(196, 255, 0, 0.55));
}

.catalog-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.catalog-tally {
    color: var(--lime);
    font-size: 1.1rem;
    font-weight: 600;
}

.catalog-info {
    color: var(--gray);
    margin-top: 1rem;
    line-height: 1.8;
}

.vendor-showcase {
    text-align: center;
    padding: 4rem;
    background: rgba(157, 46, 255, 0.06);
    border-radius: var(--r-xl);
}

.vendor-showcase h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    font-weight: 700;
}

.vendor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.vendor-chip {
    padding: 1.1rem 1.8rem;
    background: var(--card);
    border-radius: var(--r-md);
    color: var(--gray);
    font-weight: 600;
    transition: var(--ease);
    border: 2px solid rgba(196, 255, 0, 0.12);
}

.vendor-chip:hover {
    color: var(--lime);
    transform: scale(1.1);
    border-color: var(--lime);
    box-shadow: 0 10px 30px rgba(196, 255, 0, 0.35);
}

/* ========== OFFERS ========== */
.offer-region {
    background: radial-gradient(ellipse at center, rgba(157, 46, 255, 0.12), transparent 70%), var(--black);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    border: 2px solid transparent;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--lime), var(--purple));
}

.offer-card:hover {
    border-color: var(--purple);
    transform: translateY(-10px);
    box-shadow: 0 22px 65px rgba(157, 46, 255, 0.55);
}

.offer-label {
    color: var(--lime);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.offer-title {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.offer-value {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

.offer-list {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-list li {
    padding: 0.7rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offer-list li::before {
    content: '✔';
    color: var(--green);
    font-weight: 700;
    font-size: 1.3rem;
}

.offer-action {
    width: 100%;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    color: var(--white);
    padding: 1.1rem;
    border-radius: var(--r-md);
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--ease);
    box-shadow: 0 8px 28px rgba(157, 46, 255, 0.45);
}

.offer-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(157, 46, 255, 0.65);
}

/* ========== EDGE / BENEFITS ========== */
.edge-region {
    background: var(--dark);
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.edge-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    border: 2px solid rgba(196, 255, 0, 0.18);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.edge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lime), var(--purple), var(--magenta));
}

.edge-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime);
    box-shadow: 0 18px 55px rgba(157, 46, 255, 0.45);
}

.edge-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 18px rgba(196, 255, 0, 0.55));
}

.edge-name {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--lime);
    font-weight: 700;
}

.edge-info {
    color: var(--gray);
    line-height: 1.95;
}

/* ========== CONTESTS ========== */
.contest-region {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.08), rgba(196, 255, 0, 0.05));
}

.contest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contest-card {
    background: var(--card);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    border: 2px solid rgba(196, 255, 0, 0.15);
    transition: var(--ease);
}

.contest-card:hover {
    transform: translateY(-8px);
    border-color: var(--lime);
    box-shadow: 0 15px 45px rgba(196, 255, 0, 0.25);
}

.contest-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contest-card h3 {
    font-size: 1.5rem;
    color: var(--lime);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contest-card p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.contest-reward {
    background: rgba(196, 255, 0, 0.1);
    padding: 1rem;
    border-radius: var(--r-sm);
    text-align: center;
}

.contest-reward span {
    color: var(--lime);
    font-size: 1.4rem;
    font-weight: 700;
}

/* ========== BANKING ========== */
.banking-region {
    background: var(--black);
}

.banking-frame {
    background: var(--card);
    padding: 3rem;
    border-radius: var(--r-lg);
    border: 2px solid rgba(196, 255, 0, 0.22);
}

.banking-frame > h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--lime);
    text-align: center;
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.banking-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: var(--r-md);
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.banking-highlighted { border-color: var(--green); }

.banking-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.banking-emoji { font-size: 2.5rem; }

.banking-top h4 {
    font-size: 1.3rem;
    color: var(--lime);
    margin-bottom: 0.3rem;
}

.banking-tag {
    font-size: 0.75rem;
    background: rgba(0, 255, 65, 0.22);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-weight: 700;
    color: var(--green);
}

.banking-specs { display: grid; gap: 0.9rem; }

.spec-line {
    display: flex;
    justify-content: space-between;
}

.spec-line span { color: var(--gray); }
.spec-free, .spec-fast { color: var(--green) !important; }

.banking-notice {
    background: rgba(196, 255, 0, 0.06);
    padding: 2rem;
    border-radius: var(--r-md);
    border-left: 5px solid var(--lime);
    margin-top: 2rem;
}

.banking-notice h4 {
    color: var(--lime);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.banking-notice ul {
    list-style: none;
    color: var(--gray);
    line-height: 2.2;
}

/* ========== SHIELD / SECURITY ========== */
.shield-region {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.shield-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shield-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--r-md);
    border: 2px solid rgba(157, 46, 255, 0.2);
    transition: var(--ease);
}

.shield-card:hover {
    border-color: var(--purple);
    box-shadow: 0 10px 35px rgba(157, 46, 255, 0.3);
}

.shield-card h4 {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.shield-card p {
    color: var(--gray);
    line-height: 1.85;
}

/* ========== PORTABLE / MOBILE ========== */
.portable-region {
    background: var(--dark);
}

.portable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portable-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.3);
}

.portable-text p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.portable-features {
    list-style: none;
    margin: 2rem 0;
}

.portable-features li {
    padding: 0.8rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.portable-features li::before {
    content: '📱';
    font-size: 1.3rem;
}

.portable-visual {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.2), rgba(196, 255, 0, 0.15));
    border-radius: var(--r-xl);
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.2);
}

.portable-icon { font-size: 8rem; margin-bottom: 1.5rem; }

.portable-visual p {
    color: var(--lime);
    font-weight: 600;
    font-size: 1.2rem;
}

/* ========== DEEP CONTENT ========== */
.deep-content { background: var(--black); }
.platform-region { background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%); }

.deep-block {
    max-width: 1000px;
    margin: 0 auto;
}

.deep-block > h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
    font-weight: 900;
}

.deep-part { margin-bottom: 3.5rem; }

.deep-part h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--lime);
    font-weight: 700;
}

.deep-part p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: var(--gray);
    margin-bottom: 1.8rem;
}

/* ========== CROWD / COMMUNITY ========== */
.crowd-region {
    background: radial-gradient(ellipse at center, rgba(196, 255, 0, 0.06), transparent 70%), var(--black);
}

.crowd-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.crowd-box {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--r-md);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.crowd-figure {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lime);
    display: block;
    text-shadow: 0 0 20px rgba(196, 255, 0, 0.5);
}

.crowd-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crowd-article {
    background: var(--card);
    padding: 3rem;
    border-radius: var(--r-lg);
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.crowd-article h3 {
    color: var(--lime);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.crowd-article p {
    color: var(--gray);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ========== TACTICS / STRATEGIES ========== */
.tactics-region {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}

.tactics-stack {
    max-width: 1000px;
    margin: 0 auto;
}

.tactics-block {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    margin-bottom: 2rem;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--ease);
}

.tactics-block:hover {
    border-color: var(--lime);
    box-shadow: 0 10px 40px rgba(196, 255, 0, 0.2);
}

.tactics-block h3 {
    color: var(--lime);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.tactics-block p {
    color: var(--gray);
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tactics-tips {
    background: rgba(157, 46, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.tactics-tips h4 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tactics-tips ul { list-style: none; }

.tactics-tips li {
    color: var(--gray);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.tactics-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lime);
}

/* ========== AWARE / RESPONSIBLE ========== */
.aware-region { background: var(--dark); }

/* ========== GUIDE / STEPS ========== */
.guide-region {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.12), rgba(196, 255, 0, 0.06));
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.guide-card {
    background: var(--card);
    padding: 3rem 2rem;
    border-radius: var(--r-lg);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.22);
    position: relative;
}

.guide-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.guide-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--lime);
    font-weight: 700;
}

.guide-card p {
    color: var(--gray);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.guide-action {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    transition: var(--ease);
}

.guide-action:hover {
    background: var(--purple-deep);
    transform: translateY(-3px);
}

/* ========== FAQ ========== */
.faq-region { background: var(--black); }

.faq-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.faq-box {
    background: var(--card);
    margin-bottom: 1.5rem;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.faq-btn {
    width: 100%;
    padding: 1.8rem;
    background: transparent;
    color: var(--white);
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--ease);
}

.faq-btn:hover { color: var(--lime); }

.faq-arrow {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-box.open .faq-arrow { transform: rotate(45deg); }

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-box.open .faq-body { max-height: 600px; }

.faq-inner {
    padding: 0 1.8rem 1.8rem;
    color: var(--gray);
    line-height: 1.95;
}

/* ========== CLOSING CTA ========== */
.closing-region {
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.closing-region::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.18), transparent 50%);
    animation: slow-spin 25s linear infinite;
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-region h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 900;
}

.closing-region p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.closing-action {
    background: var(--lime);
    color: var(--black);
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    transition: var(--ease);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 45px rgba(196, 255, 0, 0.55);
}

.closing-action:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 22px 65px rgba(196, 255, 0, 0.75);
}

/* ========== FOOTER ========== */
.bottom-bar {
    background: var(--black);
    border-top: 3px solid var(--lime);
    padding: 4rem 0 1.5rem;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.bottom-col h4 {
    color: var(--lime);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.bottom-links { list-style: none; }

.bottom-links li { margin-bottom: 0.8rem; }

.bottom-links a {
    color: var(--gray);
    transition: var(--fast);
    font-weight: 500;
}

.bottom-links a:hover {
    color: var(--lime);
    padding-left: 8px;
}

.age-warning {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--r-md);
    text-align: center;
    border: 2px solid var(--warn);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--lime);
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.age-warning p {
    color: var(--gray);
    line-height: 1.8;
}

.bottom-base {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-text {
    color: var(--dim);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-tracker {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--purple));
    z-index: 1001;
    transition: width 0.1s ease;
    width: 0%;
}

/* ========== BACK TO TOP ========== */
.return-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lime), var(--green));
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(196, 255, 0, 0.4);
}

.return-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(196, 255, 0, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .splash-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .splash-copy h1 { font-size: 3rem; }
    .splash-media { order: -1; }
}

@media (max-width: 768px) {
    .primary-nav { display: none; }
    .hamburger-btn { display: flex; }

    .primary-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        border-bottom: 2px solid var(--lime);
    }

    .primary-nav.active .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .splash-copy h1 { font-size: 2.5rem; }
    .block-header h2,
    .portable-text h2,
    .deep-block > h2 { font-size: 2rem; }
    .container-main { padding: 0 1.5rem; }
    .deep-part h3 { font-size: 1.5rem; }
    .portable-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .splash-copy h1 { font-size: 2rem; }
    .block-header h2 { font-size: 1.8rem; }
    .btn-main, .btn-ghost {
        width: 100%;
        text-align: center;
    }
}