:root {
    --dark: #0b0f14;
    --dark-2: #111820;
    --dark-3: #18212a;
    --text: #f2f7f8;
    --muted: #8d9aa3;
    --line: rgba(255,255,255,.09);
    --cyan: #7df9ff;
    --red: #ef4c34;
    --sidebar: 270px;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

h3 {
    line-height: 1.25;
}


/* =========================================
   LAYOUT
========================================= */

.casino-layout {
    min-height: 100vh;
}

.page-main {
    min-width: 0;
    margin-left: var(--sidebar);
}


/* =========================================
   MOBILE HEADER
========================================= */

.mobile-head {
    display: none;
}


/* =========================================
   SIDE PANEL
========================================= */

.side-panel {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: var(--sidebar);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    background: #090d12;
    border-right: 1px solid var(--line);
}

.side-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-core {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
}

.brand-core__mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-weight: 800;
    font-size: 17px;
    line-height: 1;
}

.brand-core__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .16em;
}

.side-panel__label {
    margin: 58px 0 15px;
    color: #59656e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.side-nav {
    display: grid;
    gap: 5px;
}

.side-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 10px;
    color: var(--muted);
    border-radius: 9px;
    font-size: 13px;
    transition: .2s ease;
}

.side-nav__link:hover,
.side-nav__link.is-active {
    color: var(--text);
    background: rgba(125,249,255,.06);
}

.side-nav__link.is-active {
    color: var(--cyan);
}

.side-nav__index {
    width: 22px;
    color: #4f5b64;
    font-size: 10px;
    font-weight: 700;
}

.side-nav__link.is-active .side-nav__index {
    color: var(--cyan);
}

.side-panel__bottom {
    margin-top: auto;
}

.side-panel__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #68757d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.status-dot,
.bottom-rail__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(125,249,255,.7);
}

.side-register {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.side-register:hover {
    background: var(--cyan);
    color: var(--dark);
}

.menu-close {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero-stage {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    isolation: isolate;
    background: var(--dark-2);
}

.hero-stage__image,
.hero-stage__shade,
.hero-stage__grid {
    position: absolute;
    inset: 0;
}

.hero-stage__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stage__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7,11,15,.96) 0%, rgba(7,11,15,.68) 46%, rgba(7,11,15,.35) 100%),
        linear-gradient(0deg, rgba(7,11,15,.65), transparent 45%);
}

.hero-stage__grid {
    z-index: 2;
    opacity: .18;
    background-image:
        linear-gradient(rgba(125,249,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,249,255,.18) 1px, transparent 1px);
    background-size: 55px 55px;
}

.hero-stage__content {
    position: relative;
    z-index: 4;
    width: min(720px, 72%);
    padding: 100px 6%;
}


.hero-stage__title {
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero-stage__title strong {
    display: block;
    color: var(--cyan);
    font-weight: 800;
}

.hero-stage__text {
    max-width: 580px;
    margin-bottom: 28px;
    color: #aab5bc;
}

.hero-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 46px;
    padding: 0 19px;
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.action-button--main {
    background: var(--cyan);
    color: var(--dark);
}

.action-button--main:hover {
    box-shadow: 0 0 25px rgba(125,249,255,.2);
}

.action-button--line {
    border: 1px solid rgba(255,255,255,.2);
    color: var(--text);
}

.action-button--line:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.hero-stage__offer {
    position: absolute;
    z-index: 5;
    right: 5%;
    bottom: 52px;
    min-width: 190px;
    padding: 18px 20px;
    border-left: 2px solid var(--red);
    background: rgba(8,12,16,.75);
    backdrop-filter: blur(8px);
}

.hero-stage__offer-label {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero-stage__offer strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.hero-stage__offer small {
    color: var(--muted);
    font-size: 10px;
}

.hero-stage__counter {
    position: absolute;
    z-index: 5;
    right: 5%;
    top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #76838c;
    font-size: 10px;
}

.hero-stage__counter span:first-child {
    color: var(--cyan);
}

.hero-stage__counter i {
    width: 38px;
    height: 1px;
    background: #56626b;
}


/* =========================================
   CONTENT RAIL
========================================= */

.content-rail {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 5%;
    border-bottom: 1px solid var(--line);
    background: #0d1319;
}

.content-rail__title {
    flex: 0 0 auto;
    color: #5d6972;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.content-rail__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #35434d transparent;
}

.content-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 30px;
    color: #8b979f;
    font-size: 11px;
    transition: .2s ease;
}

.content-chip span {
    color: #56636b;
    font-size: 9px;
}

.content-chip:hover,
.content-chip.is-selected {
    border-color: rgba(125,249,255,.45);
    color: var(--cyan);
}


/* =========================================
   INTRO
========================================= */

.intro-copy {
    width: min(1080px, 86%);
    padding: 80px 0 40px;
    margin: auto;
}

.intro-copy__eyebrow,
.section-heading__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.intro-copy h2 {
    max-width: 700px;
    margin-bottom: 20px;
}

.intro-copy p {
    max-width: 850px;
    margin-bottom: 10px;
    color: var(--muted);
}

/* =========================================
   COMMON SECTION
========================================= */

.offers-zone,
.games-zone,
.details-zone,
.info-zone,
.responsible-zone {
    width: min(1080px, 86%);
    margin: 0 auto;
}

.offers-zone,
.games-zone,
.details-zone,
.info-zone {
    padding-bottom: 100px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 30px;
}

.section-heading p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}



/* =========================================
   DETAILS TABLE
========================================= */

.details-table {
    border-top: 1px solid var(--line);
}

.details-table__row {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 65px;
    border-bottom: 1px solid var(--line);
}

.details-table__row > div {
    display: flex;
    align-items: center;
    padding: 14px 20px;
}

.details-table__row > div:first-child {
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
}

.details-table__row > div:last-child {
    color: var(--muted);
    font-size: 11px;
}

.details-table__row--head {
    min-height: 42px;
    color: #59656e;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 8px;
}

.details-table__row--head > div {
    padding: 9px 20px;
}

.details-table__row--head > div:first-child {
    font-size: 8px;
}

.details-table__index {
    width: 30px;
    color: var(--cyan);
    font-size: 9px;
}

/* =========================================
   RESPONSIBLE GAMING
========================================= */

.responsible-zone {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 35px;
    align-items: start;
    padding: 30px;
    margin-bottom: 70px;
    border: 1px solid rgba(239,76,52,.18);
    background: rgba(239,76,52,.025);
}

.responsible-zone__label {
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.responsible-zone__label span {
    display: block;
    margin-bottom: 5px;
    color: #69747c;
}

.responsible-zone__content h2 {
    margin-bottom: 15px;
    font-size: 27px;
}

.responsible-zone__content p {
    max-width: 650px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
}

.responsible-zone__notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7b858c;
    font-size: 9px;
    white-space: nowrap;
}

.responsible-zone__age {
    color: var(--red);
    font-size: 22px;
    font-weight: 800;
}


/* =========================================
   BOTTOM RAIL
========================================= */

.bottom-rail {
    position: fixed;
    z-index: 90;
    left: calc(var(--sidebar) + 50%);
    bottom: 18px;
    width: min(760px, calc(100% - var(--sidebar) - 60px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 10px 9px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    background: rgba(9,13,18,.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.bottom-rail__copy {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8d999f;
    font-size: 10px;
}

.bottom-rail__actions {
    display: flex;
    gap: 7px;
}

.bottom-rail__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 100px;
    min-height: 35px;
    padding: 0 15px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 800;
}

.bottom-rail__button--ghost {
    border: 1px solid var(--line);
}

.bottom-rail__button--accent {
    background: var(--cyan);
    color: var(--dark);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 45px 5% 120px;
    border-top: 1px solid var(--line);
    background: #080c10;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 45px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer__links a {
    color: #68747c;
    font-size: 10px;
}

.site-footer__links a:hover {
    color: var(--cyan);
}

.site-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.site-footer__bottom p {
    max-width: 700px;
    margin: 0;
    color: #515d65;
    font-size: 9px;
}

.site-footer__bottom > span {
    flex: 0 0 auto;
    color: #465158;
    font-size: 9px;
}


/* =========================================
   BACK TO TOP
========================================= */

.page-top {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #0c1217;
    color: var(--cyan);
    font-size: 16px;
    opacity: .8;
    transition: .2s ease;
}

.page-top:hover {
    border-color: var(--cyan);
    opacity: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    :root {
        --sidebar: 230px;
    }

    .hero-stage__content {
        padding-left: 5%;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .game-tile--large {
        grid-row: auto;
        grid-column: span 2;
    }

    .game-tile--large .game-tile__visual {
        min-height: 360px;
    }

    .info-zone__columns {
        grid-template-columns: 1fr;
    }

    .responsible-zone {
        grid-template-columns: 140px 1fr;
    }

    .responsible-zone__notice {
        grid-column: 2;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

    :root {
        --sidebar: 0px;
    }

    body {
        padding-top: 62px;
    }

    .page-main {
        margin-left: 0;
    }

    /* Mobile header */

    .mobile-head {
        position: fixed;
        z-index: 120;
        top: 0;
        left: 0;
        width: 100%;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        background: rgba(9,13,18,.96);
        border-bottom: 1px solid var(--line);
    }

    .brand-core__mark {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .brand-core__title {
        font-size: 12px;
    }

    .menu-trigger {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border: 1px solid var(--line);
        background: transparent;
        cursor: pointer;
    }

    .menu-trigger span {
        width: 17px;
        height: 1px;
        background: var(--text);
    }

    /* Mobile side panel */

    .side-panel {
        z-index: 110;
        width: min(310px, 88vw);
        transform: translateX(-105%);
        transition: transform .25s ease;
        box-shadow: 15px 0 45px rgba(0,0,0,.35);
    }

    body.menu-open .side-panel {
        transform: translateX(0);
    }

    .side-panel__head {
        width: 100%;
    }

    .menu-close {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        background: transparent;
        cursor: pointer;
    }

    .menu-close span {
        position: absolute;
        width: 17px;
        height: 1px;
        background: var(--text);
    }

    .menu-close span:first-child {
        transform: rotate(45deg);
    }

    .menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .side-panel__label {
        margin-top: 45px;
    }

    /* Hero */

    .hero-stage {
        min-height: 580px;
    }

    .hero-stage__content {
        width: 100%;
        padding: 70px 22px 40px;
    }

    .hero-stage__title {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-stage__text {
        font-size: 13px;
    }

    .hero-stage__offer {
        left: 22px;
        right: auto;
        bottom: 25px;
    }

    .hero-stage__counter {
        top: 25px;
        right: 22px;
    }

    /* Content navigation */

    .content-rail {
        display: block;
        padding: 14px 18px;
    }

    .content-rail__title {
        margin-bottom: 9px;
    }

    /* Main content */

    .intro-copy,
    .signal-row,
    .offers-zone,
    .games-zone,
    .details-zone,
    .info-zone,
    .responsible-zone {
        width: calc(100% - 36px);
    }

    .intro-copy {
        padding-top: 55px;
    }

    .signal-row {
        grid-template-columns: 1fr;
        margin-bottom: 65px;
    }

    .signal-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .signal-card:last-child {
        border-bottom: 0;
    }

    /* Sections */

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 12px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: 310px;
    }

    /* Games */

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-tile--large {
        grid-column: auto;
    }

    .game-tile--large .game-tile__visual {
        min-height: 280px;
    }

    /* Table */

    .details-table__row {
        grid-template-columns: 1fr;
    }

    .details-table__row > div:first-child {
        border-right: 0;
        padding-bottom: 5px;
    }

    .details-table__row > div:last-child {
        padding-top: 5px;
        padding-bottom: 17px;
    }

    .details-table__row--head {
        display: none;
    }

    /* Info */

    .info-zone__columns {
        grid-template-columns: 1fr;
    }

    .info-note__mark {
        margin-bottom: 25px;
    }

    /* Responsible */

    .responsible-zone {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .responsible-zone__notice {
        grid-column: auto;
    }

    /* Bottom bar */

    .bottom-rail {
        left: 0;
        bottom: 0;
        width: 100%;
        transform: none;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 0;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    }

    .bottom-rail__copy {
        display: none;
    }

    .bottom-rail__actions {
        width: 100%;
        gap: 7px;
    }

    .bottom-rail__button {
        flex: 1;
    }

    /* Footer */

    .site-footer {
        padding: 40px 18px 100px;
    }

    .site-footer__top,
    .site-footer__bottom {
        display: block;
    }

    .site-footer__links {
        margin-top: 25px;
    }

    .site-footer__bottom > span {
        display: block;
        margin-top: 18px;
    }

    /* Back to top */

    .page-top {
        right: 14px;
        bottom: 72px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .hero-stage__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .action-button {
        width: 100%;
    }

    .hero-stage__offer {
        min-width: 165px;
    }

    .hero-stage__offer strong {
        font-size: 21px;
    }

    .games-footer {
        display: block;
    }

    .games-footer__line {
        margin-bottom: 14px;
    }
}

/* =================================
   CONTENT TABLES
================================= */

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #7df9ff rgba(255, 255, 255, 0.06);
}

.table-scroll::-webkit-scrollbar {
    height: 7px;
}

.table-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #7df9ff;
    border-radius: 10px;
}


/* TABLE */

.table-scroll table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(125, 249, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
}


/* HEADER */

.table-scroll th {
    padding: 17px 22px;
    background: rgba(125, 249, 255, 0.055);
    border-bottom: 1px solid rgba(125, 249, 255, 0.12);
    color: #7df9ff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}


/* CELLS */

.table-scroll td {
    padding: 19px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
    vertical-align: middle;
}

.table-scroll tr:last-child td {
    border-bottom: 0;
}


/* FIRST COLUMN */

.table-scroll td:first-child {
    min-width: 220px;
    color: #fff;
    font-weight: 700;
}


/* HOVER */

.table-scroll tbody tr {
    transition: background 0.25s ease;
}

.table-scroll tbody tr:hover {
    background: rgba(125, 249, 255, 0.035);
}


/* MOBILE */

@media (max-width: 640px) {

    .table-scroll {
        margin-right: -1px;
    }

    .table-scroll table {
        min-width: 650px;
        border-radius: 13px;
    }

    .table-scroll th {
        padding: 14px 16px;
        font-size: 10px;
    }

    .table-scroll td {
        padding: 16px;
        font-size: 13px;
    }

    .table-scroll td:first-child {
        min-width: 190px;
    }

}

.hero-stage__tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-stage__tag a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-stage__tag a:hover {
    color: #7df9ff;
}

.hero-stage__tag-separator {
    color: rgba(255, 255, 255, 0.28);
}

.hero-stage__tag-current {
    color: #7df9ff;
}

@media (max-width: 640px) {

    .hero-stage__tag {
        gap: 7px;
        font-size: 10px;
    }

}

.intro-copy p a {
    color: #7df9ff;
    text-decoration: underline;
}
