:root {
    --bg: #f6f7ff;
    --text: #0b1020;
    --muted: #5b647a;
    --card: #ffffff;
    --line: rgba(15, 23, 42, .12);
    --primary: #2b2ae8;
    --primary-2: #1c14c9;
    --accent: #38bdf8;
    --radius: 18px;
    --shadow: 0 14px 40px rgba(17, 24, 39, .10);
    --shadow2: 0 8px 22px rgba(17, 24, 39, .10);
    --container: 1120px;
    --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
}

img {
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

p {
    margin: 0 0 14px
}

small {
    color: var(--muted)
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.navlinks a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #10162f;
    opacity: .86;
}

.navlinks a:hover {
    background: rgba(43, 42, 232, .08);
    opacity: 1
}

.pill {
    border: 1px solid rgba(43, 42, 232, .18);
    background: rgba(43, 42, 232, .06);
}

.pill-primary {
    border: 0;
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 10px 18px rgba(43, 42, 232, .22);
}

a.pill-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary))
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow2);
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 18px;
    height: 2px;
    background: #1f2a44;
    border-radius: 3px;
    display: block;
    transition: .2s ease;
}

@media (max-width: 940px) {
    .burger {
        display: flex
    }

    .navlinks {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .navlinks.open {
        display: flex
    }

    .navlinks a {
        justify-content: center;
        text-align: center
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(60% 80% at 65% 35%, rgba(56, 189, 248, .55) 0%, rgba(56, 189, 248, 0) 60%),
    radial-gradient(50% 70% at 20% 70%, rgba(124, 58, 237, .55) 0%, rgba(124, 58, 237, 0) 60%),
    linear-gradient(135deg, #0b0b24 0%, #0a0a1a 45%, #160a1a 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    opacity: .9;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    padding: 86px 0 70px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(43, 42, 232, .68);
    border: 1px solid rgba(255, 255, 255, .18);
    font-weight: 650;
    letter-spacing: .2px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 4.4vw, 62px);
    line-height: 1.06;
    margin: 18px 0 14px;
    text-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.hero p {
    max-width: 640px;
    font-size: 16px;
    color: rgba(255, 255, 255, .88);
}

.hero-actions {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.stat {
    min-width: 320px;
    padding: 22px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(43, 42, 232, .26), rgba(43, 42, 232, .06));
    box-shadow: 0 16px 38px rgba(0, 0, 0, .20);
}

.stat .value {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
}

.stat .label {
    margin-top: 10px;
    color: rgba(255, 255, 255, .80);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: #fff;
    box-shadow: 0 14px 28px rgba(43, 42, 232, .22);
}

.btn-soft {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .20);
    color: #fff;
}

.note {
    margin-top: 18px;
    color: rgba(255, 255, 255, .72);
    max-width: 740px;
    font-size: 13px;
}

@media (max-width: 640px) {
    .stat {
        min-width: unset;
        width: 100%
    }

    .hero-inner {
        padding: 64px 0 60px
    }
}

/* SECTION */
.section {
    padding: 76px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.kicker {
    color: #dfe2ff;
    font-weight: 700;
    letter-spacing: .22px;
}

.h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 3.4vw, 54px);
    margin: 8px 0 10px;
}

.sub {
    color: rgba(255, 255, 255, .82);
    max-width: 760px;
    margin: 0 auto;
}

/* STRATEGY */
.strategy {
    color: #fff;
    background: linear-gradient(180deg, #2b2ae8 0%, #4c2bd9 70%, #5030ce 100%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

@media (max-width: 860px) {
    .grid {
        grid-template-columns:1fr
    }
}

.card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 189, 248, .28), rgba(56, 189, 248, 0) 70%);
}

.card h3 {
    font-family: var(--serif);
    font-size: 34px;
    margin: 6px 0 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(17, 24, 39, .30);
    border: 1px solid rgba(255, 255, 255, .16);
    text-transform: uppercase;
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .22);
    margin: 16px 0 14px;
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .88);
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 20px;
}

.price {
    margin: 20px 0 14px;
    text-align: center;
}

.price .big {
    font-family: var(--serif);
    font-size: 54px;
    line-height: 1;
}

.price .small {
    color: rgba(255, 255, 255, .78);
    margin-top: 8px;
    font-size: 14px;
}

.card .cta {
    width: 100%;
    margin-top: 6px;
}

/* LIGHT PAGES */
.page {
    padding: 64px 0 10px;
}

.page h1 {
    font-family: var(--serif);
    font-size: clamp(34px, 3.2vw, 52px);
    text-align: center;
    margin: 10px 0 10px;
    color: #1b1fe0;
}

.page .intro {
    text-align: center;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 26px;
}

.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.panel + .panel {
    margin-top: 18px
}

.two {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

@media (max-width: 900px) {
    .two {
        grid-template-columns:1fr
    }
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

label {
    font-weight: 650
}

input, textarea, select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .18);
    outline: none;
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical
}

.form-actions {
    margin-top: 14px
}

.btn-dark {
    background: linear-gradient(135deg, #2b2ae8, #1c14c9);
    color: #fff;
    border: 0;
    width: 100%;
    padding: 14px 16px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(43, 42, 232, .20);
}

.muted-box {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

/* GAME LIST */
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 980px) {
    .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 640px) {
    .game-grid {
        grid-template-columns: 1fr
    }
}

.game {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow2);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game h3 {
    margin: 0;
    font-size: 18px
}

.game .meta {
    color: var(--muted);
    font-size: 13px
}

.game .price2 {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.game .price2 .v {
    font-weight: 900;
    font-size: 18px
}

.game .price2 .t {
    color: var(--muted);
    font-size: 13px
}

/* PICK */
.pick-wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: start;
}

@media (max-width: 980px) {
    .pick-wrap {
        grid-template-columns:1fr
    }
}

.num-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 520px) {
    .num-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }
}

.num {
    border-radius: 999px;
    border: 0;
    background: #e5e7eb;
    height: 54px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .06);
}

.num.active {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: #fff;
    box-shadow: 0 10px 18px rgba(43, 42, 232, .20);
}

.pick-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pick-actions .btn {
    border: 1px solid var(--line);
    background: #fff;
    color: #111827;
}

.pick-actions .btn:hover {
    background: #f3f4f6
}

.pick-actions .btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #6d28d9);
}

/* FOOTER */
.footer {
    margin-top: 70px;
    background: #0b0b12;
    color: rgba(255, 255, 255, .86);
    padding: 56px 0;
}

.footer .fine {
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
}

.footer .links {
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer .links a {
    color: #b7baff;
    padding: 8px 10px;
    border-radius: 999px;
}

.footer .links a:hover {
    background: rgba(183, 186, 255, .10)
}

.footer .age {
    margin-top: 18px;
    font-weight: 900;
    color: #ff4b6f;
}

.footer .copy {
    margin-top: 30px;
    color: rgba(255, 255, 255, .62);
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .55);
    z-index: 60;
    padding: 18px;
}

.modal.open {
    display: grid
}

.modal-card {
    width: min(620px, 100%);
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, .12);
}

.modal-card h3 {
    margin: 0 0 8px
}

.modal-card p {
    color: var(--muted)
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    border: 1px solid var(--line);
}

.modal-actions .btn-primary {
    border: 0
}

.logo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.logo-trust a, .logo-trust .age-block {
  padding: 5px;
  border: 1px solid #fff2;
  background: #fff3;
  height: 50px;
  border-radius: 5px;
}

.logo-trust a img, .logo-trust .age-block img {
  height: 100%;
}