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

:root {
    --lime: #c4ff00;
    --lime-glow: #e0ff33;
    --purple: #9d2eff;
    --purple-deep: #6a0dad;
    --magenta: #ff00ff;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-mid: #1a1a1a;
    --bg-card: #151515;
    --white: #ffffff;
    --gray: #b8b8b8;
    --dim: #666666;
    --green: #00ff41;
    --warn: #ffaa00;
    --font: 'Poppins', sans-serif;
    --ease: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font);
    background: var(--bg-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; }
ul { list-style: none; }

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sec-pad { 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-fixed {
    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-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    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;
}

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

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

.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%; }

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

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

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

.burger-btn span {
    width: 28px;
    height: 3px;
    background: var(--lime);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.intro-hero {
    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(--bg-black);
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 950px;
    height: 950px;
    background: radial-gradient(circle, rgba(157, 46, 255, 0.25), transparent 60%);
    border-radius: 50%;
}

.intro-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.18), transparent 60%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-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.3);
}

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

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

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

.btn-primary: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: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.hero-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-badge {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.2);
}

.hero-badge i {
    font-size: 2.5rem;
    color: var(--lime);
    margin-bottom: 1rem;
    display: block;
}

.hero-badge span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray);
}

.sec-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

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

.game-categories { background: var(--bg-dark); }

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

.cat-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.15);
    transition: var(--ease);
}

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

.cat-ico {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--lime);
}

.cat-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.cat-num {
    color: var(--lime);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.cat-card p {
    color: var(--gray);
    line-height: 1.8;
}

.detailed-slots { background: var(--bg-black); }

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

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

.prose-segment {
    margin-bottom: 3rem;
}

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

.prose-segment p {
    font-size: 1.1rem;
    line-height: 2.1;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.cities-section {
    background: radial-gradient(ellipse at center, rgba(157, 46, 255, 0.08), transparent 70%), var(--bg-dark);
}

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

.city-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(157, 46, 255, 0.2);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

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

.city-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 15px 45px rgba(157, 46, 255, 0.35);
}

.city-ico {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1.2rem;
}

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

.city-card p {
    color: var(--gray);
    line-height: 1.9;
}

.bonus-zone {
    background: radial-gradient(ellipse at center, rgba(157, 46, 255, 0.1), transparent 70%), var(--bg-black);
}

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

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

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

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

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

.bonus-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-sum {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 1.8rem;
    font-weight: 600;
}

.bonus-perks { margin-bottom: 1.8rem; }

.bonus-perks li {
    padding: 0.6rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bonus-perks li i { color: var(--green); font-size: 1rem; }

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

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

.live-experience {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
}

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

.live-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--ease);
}

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

.live-ico {
    font-size: 3rem;
    color: var(--lime);
    margin-bottom: 1.2rem;
}

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

.live-card p {
    color: var(--gray);
    line-height: 1.9;
}

.advantages-zone {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

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

.adv-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 255, 0, 0.15);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

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

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

.adv-ico {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--lime);
}

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

.adv-card p {
    color: var(--gray);
    line-height: 1.9;
}

.vip-section {
    background: radial-gradient(ellipse at top, rgba(196, 255, 0, 0.06), transparent 70%), var(--bg-black);
}

.providers-zone {
    background: var(--bg-dark);
}

.providers-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(157, 46, 255, 0.05);
    border-radius: 25px;
}

.prov-chip {
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    color: var(--gray);
    font-weight: 600;
    transition: var(--ease);
    border: 2px solid rgba(196, 255, 0, 0.1);
}

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

.payments-hub { background: var(--bg-black); }

.pay-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 255, 0, 0.2);
}

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

.pay-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.pay-card.featured { border-color: var(--green); }

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

.pay-head > i { font-size: 2.2rem; color: var(--lime); }

.pay-head h4 {
    font-size: 1.2rem;
    color: var(--lime);
    margin-bottom: 0.3rem;
}

.pay-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
}

.tag-popular { background: rgba(0, 255, 65, 0.2); color: var(--green); }
.tag-rec { background: rgba(0, 255, 65, 0.2); color: var(--green); }

.pay-info { display: grid; gap: 0.8rem; }

.pay-row {
    display: flex;
    justify-content: space-between;
}

.pay-row span { color: var(--gray); }
.free-tag { color: var(--green) !important; }
.fast-tag { color: var(--green) !important; }

.pay-note {
    background: rgba(196, 255, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--lime);
}

.pay-note h4 {
    color: var(--lime);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.pay-note h4 i { margin-right: 0.5rem; }

.pay-note p {
    color: var(--gray);
    line-height: 1.9;
}

.mobile-zone {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.08), rgba(196, 255, 0, 0.04));
}

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

.mobile-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

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

.mobile-perks { margin: 2rem 0; }

.mobile-perks li {
    padding: 0.7rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.mobile-perks li i { color: var(--green); font-size: 1.1rem; }

.mobile-visual-block {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.2), rgba(196, 255, 0, 0.12));
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.2);
}

.mobile-visual-block i {
    font-size: 6rem;
    color: var(--lime);
    display: block;
    margin-bottom: 1.5rem;
}

.mobile-visual-block span {
    color: var(--lime);
    font-weight: 600;
    font-size: 1.2rem;
}

.tournament-hub {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.06), rgba(196, 255, 0, 0.04));
}

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

.tourney-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--ease);
}

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

.tourney-ico {
    font-size: 2.8rem;
    color: var(--lime);
    margin-bottom: 1.2rem;
}

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

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

.tourney-prize {
    background: rgba(196, 255, 0, 0.08);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: var(--lime);
    font-size: 1.3rem;
    font-weight: 700;
}

.tourney-prize i { margin-right: 0.5rem; }

.crypto-zone { background: var(--bg-dark); }

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

.crypto-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(157, 46, 255, 0.18);
    transition: var(--ease);
}

.crypto-card:hover {
    border-color: var(--purple);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(157, 46, 255, 0.3);
}

.crypto-ico {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1.2rem;
}

.crypto-card h3 {
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.crypto-card p {
    color: var(--gray);
    line-height: 1.9;
}

.safety-fortress {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

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

.safety-tile {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(157, 46, 255, 0.18);
    transition: var(--ease);
}

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

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

.safety-tile h4 i { margin-right: 0.6rem; }

.safety-tile p {
    color: var(--gray);
    line-height: 1.85;
}

.steps-section {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.1), rgba(196, 255, 0, 0.05));
}

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

.step-box {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.2);
    position: relative;
}

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

.step-ico {
    font-size: 3rem;
    color: var(--lime);
    margin-bottom: 1.2rem;
}

.step-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--lime);
    font-weight: 700;
}

.step-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.step-link {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    padding: 0.8rem 2.2rem;
    border-radius: 100px;
    font-weight: 700;
}

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

.community-area { background: var(--bg-black); }

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

.comm-stat {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.12);
}

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

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

.comm-copy {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 255, 0, 0.12);
}

.comm-copy h3 {
    color: var(--lime);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.comm-copy p {
    color: var(--gray);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.strategies-hub {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
}

.strat-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strat-block {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(196, 255, 0, 0.1);
    transition: var(--ease);
}

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

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

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

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

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

.strat-tips h4 i { margin-right: 0.5rem; }

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

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

.support-section { background: var(--bg-dark); }

.responsible-play { background: var(--bg-black); }

.faq-zone { background: var(--bg-dark); }

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

.faq-box {
    background: var(--bg-card);
    margin-bottom: 1.2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.15);
}

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

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

.faq-toggle-ico {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--lime);
}

.faq-box.open .faq-toggle-ico { 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-body p {
    padding: 0 1.8rem 1.8rem;
    color: var(--gray);
    line-height: 1.9;
}

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

.closing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.15), transparent 50%);
}

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

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

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

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

.site-base {
    background: var(--bg-black);
    border-top: 3px solid var(--lime);
    padding: 4rem 0 1.5rem;
}

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

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

.base-links li { margin-bottom: 0.7rem; }

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

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

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

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

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

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

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

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

.top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lime), var(--green));
    color: var(--bg-black);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(196, 255, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-copy h1 { font-size: 3rem; }
    .hero-aside { order: -1; }
}

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

    .main-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);
    }

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

    .hero-copy h1 { font-size: 2.4rem; }
    .sec-title h2 { font-size: 2rem; }
    .container-fluid { padding: 0 1.5rem; }
    .prose-block > h2 { font-size: 2rem; }
    .prose-segment h3 { font-size: 1.4rem; }
    .mobile-flex { grid-template-columns: 1fr; }
    .mobile-text h2 { font-size: 2rem; }
    .closing-cta h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-copy h1 { font-size: 1.9rem; }
    .sec-title h2 { font-size: 1.7rem; }
    .btn-primary, .btn-ghost {
        width: 100%;
        text-align: center;
    }
    .hero-aside {
        grid-template-columns: 1fr;
    }
}