/* JOKABET-UK-BUILD-2.4 - if this line is missing on the server, an old style.css is cached */
:root {
    /* base (dark) */
    --color-bg: #08090A;
    --color-text: #F4F1E8;
    --color-text-strong: #C9CEC6;

    --color-header: #0E1210;
    --color-footer: #050606;

    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: #1F2A23;

    --color-border-soft: rgba(216, 176, 78, 0.14);
    --color-border-softer: rgba(255, 255, 255, 0.05);

    /* brand: Jokabet gold + emerald */
    --color-primary: #D8B04E;
    --color-primary-hover: #EBC96A;
    --color-primary-active: #A9822F;

    --color-secondary: #22D07A;
    --color-secondary-hover: #4BE39A;
    --color-secondary-active: #169A58;

    --color-link: #3BE08E;
    --color-link-hover: #6FEAAD;

    --color-btn-text-dark: #08090A;
    --color-btn-text-light: #FFFFFF;

    --gradient-btn-primary: linear-gradient(135deg, #A9822F, #E6C15C 70%);
    --gradient-btn-secondary: linear-gradient(135deg, #169A58, #22D07A 70%);

    --gradient-hero-left: radial-gradient(circle at top left, rgba(216, 176, 78, 0.16), transparent 55%);
    --gradient-hero-right: radial-gradient(circle at top right, rgba(34, 208, 122, 0.12), transparent 55%);

    --color-jackpot-bg1: #0E1210;
    --color-jackpot-bg2: #050606;

    --color-games-bg: rgba(8, 9, 10, 0.98);
    --color-games-thumb-bg: #111613;

    --color-banner-bg: #000000;
    --color-banner-dot: rgba(0, 0, 0, 0.6);
    --color-banner-dot-border: rgba(255, 255, 255, 0.6);
    --color-banner-dot-active: #22D07A;

    --color-link-underline-from: #D8B04E;
    --color-link-underline-to: #EBC96A;

    --focus-ring: rgba(34, 208, 122, 0.35);
    --color-success: #22C55E;
    --color-error: #EF4444;
    --color-warning: #D8B04E;
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}


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

a:hover {
    text-decoration: underline;
}

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



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.content {
    min-height: 60vh;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    background: var(--gradient-btn-primary);
    color: var(--color-btn-text-dark);
    text-decoration: none;
    transition: 0.2s all;
    white-space: nowrap;
    border: 1px solid #ffffff;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px 2px rgba(108, 108, 108, 0.4);
    background-color: var(--color-btn-text-light);
    color: var(--color-btn-text-dark);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-btn-text-light);
}

.btn--primary {
    background: var(--gradient-btn-primary);
    color: var(--color-btn-text-dark);
    border: 1px solid #D8B04E;
}

.btn--primary:hover{
    box-shadow: 0 4px 10px 2px rgba(34, 208, 122, 0.35);
    background: #0F1311;
    color: #D8B04E;
}



.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border-soft);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 16px;
}



.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: 100px;
    display: block;
    object-fit: contain;
}



.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 24px;
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav__item a {
    font-size: 14px;
    opacity: 0.84;
    position: relative;
    padding: 4px 0;
}

.main-nav__item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-link-underline-from), var(--color-link-underline-to));
    transition: width 0.18s ease;
}

.main-nav__item a:hover::after,
.main-nav__item a.active::after {
    width: 100%;
}



.auth {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.auth a {
    font-size: 14px;
}



.header-burger {
    display: none;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-burger span,
.header-burger span::before,
.header-burger span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text-strong);
    position: relative;
    transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease, bottom 0.18s ease;
}

.header-burger span::before,
.header-burger span::after {
    content: "";
    position: absolute;
}

.header-burger span::before {
    top: -5px;
}

.header-burger span::after {
    bottom: -5px;
}

.header-burger.active span {
    transform: rotate(45deg);
}

.header-burger.active span::before {
    top: 0;
    transform: rotate(-90deg);
}

.header-burger.active span::after {
    bottom: 0;
    opacity: 0;
}



@media (max-width: 768px) {
    .header__inner {
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto; /* logo | burger | buttons */
        align-items: center;
        column-gap: 8px;
    }

    body {
        padding-bottom: 240px;
    }

    .logo-img {
        height: 40px;
    }

    .header-burger {
        display: inline-flex;
        justify-self: center;
    }

    .auth {
        justify-self: end;
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .auth .btn {
        padding-inline: 14px;
        white-space: nowrap;
    }

    .header-menu {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--color-header);
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
        z-index: 40;
    }

    .header-menu.header-menu--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}



.hero {
    padding: 40px 0 32px;
    background: var(--gradient-hero-left), var(--gradient-hero-right);
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero p {
    font-size: 15px;
    max-width: 520px;
    color: rgba(245, 245, 247, 0.88);
    margin-bottom: 20px;
}

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



.hero-side {
    justify-self: end;
}

.jackpot-widget {
    min-width: 260px;
    max-width: 320px;
    padding: 16px 18px;
    border-radius: 18px;
    background: radial-gradient(circle at top, var(--color-jackpot-bg1), var(--color-jackpot-bg2));
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.jackpot-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.7;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.jackpot-timer {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 14px;
}



section {
    padding: 32px 0;
}

section h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

section p {
    font-size: 14px;
    color: rgba(245, 245, 247, 0.9);
}



.promos .promo-list {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.promo-card {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(15, 19, 17, 0.95);
    border: 1px solid var(--color-border-soft);
}

.promo-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.promo-card p {
    font-size: 14px;
    margin-bottom: 10px;
}



.games {
    border-top: 1px solid var(--color-border-softer);
}

.games-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.games-header a {
    font-size: 13px;
    opacity: 0.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.game-card {
    background: var(--color-games-bg);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border-softer);
    display: flex;
    flex-direction: column;
    min-height: 190px;
}

.game-thumb {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
    background: var(--color-games-thumb-bg);
}

.game-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-body {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-name {
    font-size: 14px;
    font-weight: 600;
}

.game-actions {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}



.page-content {
    padding-top: 28px;
    padding-bottom: 32px;
    margin-top: 0;
}

.page-content h1 {
    font-size: 28px;
    margin-bottom: 14px;
}

.page-content p + p {
    margin-top: 10px;
}




html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}


main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    background: #050606;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}



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


.footer__col {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__col li + li {
    margin-top: 6px;
}

.footer__col a {
    font-size: 14px;
    color: rgba(245,245,247,0.9);
    text-decoration: none;
}

.footer__col a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__links {
        flex-direction: column;
        gap: 16px;
    }

    .footer__inner p {
        max-width: 100%;
    }
}




.banner-carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 0;
}



.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-banner-bg);
}

.banner-carousel__viewport {
    position: absolute;
    inset: 0;
}



.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.banner-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}



.banner-slide__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.banner-slide__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    text-align: left;
    margin-left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-slide__content p {
    color: #efefef;
}

.banner-slide__content h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner-slide__content p {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}



.banner-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-banner-dot-border);
    background: var(--color-banner-dot);
    cursor: pointer;
    transition: all 0.2s ease;
}

.banner-dot.is-active {
    background: var(--color-banner-dot-active);
    border-color: var(--color-text-strong);
    transform: scale(1.15);
}


.banner-slide__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.10) 100%
    );
}


@media (max-width: 600px) {
    .banner-slide__content .btn {
        width: auto;
        max-width: 100%;
        display: inline-flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-slide__content .btn {
        width: auto;
        max-width: 100%;
    }
}

.page-text,
.content-box {
    font-family: "Inter", system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.55;
}
.page-text img{
    width: 50%;
    margin: 15px auto !important;
}



.page-text h1,
.content-box h1,
.page-text h2,
.content-box h2,
.page-text h3,
.content-box h3 {
    font-weight: 800;
    line-height: 1.25;
    margin: 26px 0 12px;
    color: var(--color-text);
}


.page-text h1,
.content-box h1 {
    font-size: 28px;
}

.page-text h2,
.content-box h2 {
    font-size: 24px;
    margin-top: 0;
}

.page-text h3,
.content-box h3 {
    font-size: 20px;
}



.page-text p,
.content-box p {
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--color-text-strong);
}



.page-text ul,
.content-box ul {
    list-style: none;
    margin: 10px 0 20px 0;
    padding-left: 0;
}

.page-text ul li,
.content-box ul li,
.page-text ol li,
.content-box ol li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: rgba(235, 235, 245, 0.9);
}

.page-text ul li::before,
.content-box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-text-strong);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}


.content-box {
    background: #0F1311;
    border: 1px solid var(--color-card-border);
    padding: 26px 26px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}



@media (max-width: 960px) {
    .hero .container {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-side {
        justify-self: start;
    }

    .main-nav__list {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        padding-inline: 12px;
    }

    .logo-img {
        height: 40px;
    }

    .header-menu {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #0E1210;
        padding: 0 16px 16px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
        z-index: 40;
    }

    .header-menu.header-menu--open {
        transform: translateY(16px);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .auth {
        display: flex;
        flex-direction: row;
        gap: 8px;
        width: 100%;
        margin-top: 8px;
    }

    .auth .btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .banner-carousel-wrapper {
        padding: 0 12px;
    }

    .banner-carousel {
        width: 100%;
        height: 260px;
        border-radius: 12px;
    }

    .banner-slide__content {
        margin-left: 16px;
        margin-right: 16px;
        max-width: none;
        top: 50%;
        transform: translateY(-50%);
    }

    .banner-slide__content h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .banner-slide__content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .btn--primary {
        display: inline-block;
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero .hero-actions {
        flex-direction: column;
    }

    .game-card {
        min-height: 170px;
    }
}

/* ===== FAQ ===== */

.faq {
    padding: 32px 0 40px;
}

.faq__title {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--color-text-strong);
}


.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.faq__item {
    background: #D8B04E;
    border-radius: 14px;
    overflow: hidden;
}


.faq__question {
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.faq__question:hover {
    background: rgba(0, 0, 0, 0.08);
}


.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}


.faq__item.open .faq__answer {
    max-height: 500px;
    padding: 0 24px 22px 24px;
}


.faq__answer p {
    font-size: 16px;
    line-height: 1.45;
    color: #000 !important;
}


.faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    top: 50%;
    left: 0;
    transform-origin: center;
    transition: transform 0.25s ease;
}


.faq__icon::before {
    transform: rotate(0deg);
}

.faq__icon::after {
    transform: rotate(90deg);
}


.faq__item.open .faq__icon::before {
    transform: rotate(0deg);
}

.faq__item.open .faq__icon::after {
    transform: rotate(0deg);
    opacity: 0;
}


@media (max-width: 600px) {
    .faq__question {
        padding: 16px 18px;
        font-size: 16px;
    }

    .faq__answer p {
        font-size: 14px;
    }
}





.reviews {
    padding: 32px 0 40px;
}

.reviews__title {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--color-text-strong);
}

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



.review-card {
    position: relative;
    padding: 18px 20px 20px;
    border-radius: 18px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}


.review-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #D8B04E;
}


.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(216, 176, 78, 0.9);
}



.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #D8B04E;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-card__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-strong);
}

.review-card__meta {
    font-size: 12px;
    opacity: 0.75;
}



.review-card__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(245, 245, 247, 0.94);
}



@media (max-width: 600px) {
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        padding: 16px 16px 18px;
    }

    .review-card__text {
        font-size: 13px;
    }
}

.img-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.img-center img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;

    background: linear-gradient(135deg, #A9822F, #D8B04E 70%);
    color: #000000;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    text-decoration: none;
}

.content-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
.center-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.faq__question > h3 {
    margin: 0;
    color: #000000;
}
table {
    display: block !important;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 30px;
    border: 1px solid #1F2A23;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  thead,
  tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  tr {
    display: flex;
    width: 100%;
  }

  table th,
  table td {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 15px;
    color: #ffffff;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    min-width: 110px;
    background-color: #111713;
  }

  table thead th {
    background-color: #000000;
    color: #D8B04E;
    font-weight: 800;
    font-size: 18px;
  }
  .content-box > a > img {
    margin: 20px auto;
  }
  .banner-slide__content > .banner-slide__title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}
.footer__nav {
    width: 100%;
}
.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.footer__nav-link {
    font-size: 13px;
    color: rgba(245,245,247,0.6);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.footer__nav-link:hover {
    color: rgba(245,245,247,1);
    text-decoration: underline;
}
.footer__copy {
    font-size: 13px;
    color: rgba(245,245,247,0.45);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .footer__nav-list {
        flex-direction: column;
        gap: 10px;
    }
    .footer__nav-link {
        font-size: 14px;
    }
}
.content-img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px auto;
    border-radius: 12px;
}

/* ===== Jokabet overrides ===== */
.logo-img { height: 44px; width: auto; }
@media (max-width: 768px) { .logo-img { height: 34px; } }
@media (max-width: 420px) { .logo-img { height: 28px; } .auth .btn { padding-inline: 10px; font-size: 13px; } }

.btn--outline { border-color: rgba(216, 176, 78, 0.6); }
.btn--outline:hover { background: rgba(216, 176, 78, 0.12); color: #EBC96A; }

.banner-slide__image img { object-position: 70% center; }
.banner-slide__content > .banner-slide__title { font-size: 34px; font-weight: 800; color: #F4F1E8; }
.banner-slide__content h1.banner-slide__title { color: #EBC96A; }
@media (max-width: 600px) { .banner-slide__content > .banner-slide__title { font-size: 22px; } }
.banner-dot { padding: 0; }

.page-text img { height: auto; border-radius: 12px; }
@media (max-width: 768px) { .page-text img { width: 100%; } }
.page-text ol { margin: 10px 0 20px 22px; padding-left: 0; }
.page-text ol li { padding-left: 6px; }
.page-text ol li::marker { color: #D8B04E; font-weight: 700; }
.page-text ul li::before { background: #D8B04E; }
.page-text h2 { color: #EBC96A; margin-top: 34px; }
.content-box { border-color: #1F2A23; box-shadow: 0 0 0 1px rgba(216, 176, 78, 0.06), 0 0 30px rgba(0, 0, 0, 0.35); }

table { border-color: #1F2A23; }
table th, table td { border-bottom: 1px solid rgba(216, 176, 78, 0.16); }
table thead th { background-color: #050606; color: #EBC96A; font-size: 16px; }
table tbody tr:nth-child(even) td { background-color: #0D120F; }

.faq__title { color: #EBC96A; }
.faq__item { background: #0F1311; border: 1px solid rgba(216, 176, 78, 0.35); }
.faq__question, .faq__question > h3 { color: #EBC96A; }
.faq__question > h3 { font-size: 18px; margin: 0; }
.faq__question:hover { background: rgba(216, 176, 78, 0.08); }
.faq__answer p { color: #C9CEC6 !important; }
.faq__icon::before, .faq__icon::after { background: #22D07A; }

.footer { border-top: 1px solid rgba(216, 176, 78, 0.18); }
.footer__logo img { height: 36px; width: auto; margin-bottom: 14px; }
.footer__age { display: inline-block; border: 1px solid #D8B04E; color: #D8B04E; border-radius: 6px; padding: 0 6px; margin-right: 6px; font-weight: 700; }

/* sticky header fix: body must not be capped at viewport height */
html, body { height: auto; }
body { min-height: 100vh; }

/* FAQ sits inside the content box: no double side padding */
.content-box .faq { padding: 24px 0 0; }
.content-box .faq .container { padding: 0; }
@media (max-width: 600px) {
    .content-box { padding: 20px 16px; }
    .banner-slide__image img { object-position: 78% center; }
    .banner-slide__image::after { background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%); }
    .banner-slide__content p, .banner-slide__content .banner-slide__title { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9); }
}

/* ===== Design v2.2: richer layout ===== */
body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(900px 500px at 10% -5%, rgba(216, 176, 78, 0.10), transparent 60%),
        radial-gradient(800px 500px at 95% 10%, rgba(34, 208, 122, 0.08), transparent 60%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.012) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.012) 75%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.012) 75%);
    background-size: auto, auto, 48px 48px, 48px 48px;
    background-attachment: fixed, fixed, scroll, scroll;
}

.header { background: rgba(10, 13, 11, 0.86); }

.banner-carousel { border: 1px solid rgba(216, 176, 78, 0.22); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); }
.banner-slide__content h1.banner-slide__title {
    font-size: 44px; letter-spacing: -0.01em;
    background: linear-gradient(180deg, #F6DE93, #C99A3A);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 600px) { .banner-slide__content h1.banner-slide__title { font-size: 28px; } }

.content-box {
    background: linear-gradient(180deg, rgba(17, 22, 19, 0.96), rgba(10, 13, 11, 0.96));
    border: 1px solid rgba(216, 176, 78, 0.14);
    border-radius: 22px;
    padding: 40px 44px;
}
.page-text p, .content-box p { font-size: 17px; line-height: 1.75; }

/* H2 with accent bar, like the reference */
.page-text h2 {
    position: relative;
    padding-left: 22px;
    margin: 56px 0 22px;
    font-size: 32px;
    line-height: 1.2;
    color: #F4F1E8;
}
.page-text h2::before {
    content: "";
    position: absolute; left: 0; top: 0.12em; bottom: 0.12em;
    width: 5px; border-radius: 4px;
    background: linear-gradient(180deg, #E6C15C, #22D07A);
}
@media (max-width: 600px) { .page-text h2 { font-size: 24px; margin-top: 40px; padding-left: 16px; } }

/* image beside text (reference screenshot) */
.media-row {
    display: grid;
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    gap: 40px;
    align-items: center;
    margin: 8px 0 26px;
}
.media-row--reverse .media-row__img { order: 2; }
.media-row__img {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(216, 176, 78, 0.28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(34, 208, 122, 0.04);
}
.page-text .media-row__img img {
    width: 100%; height: auto; margin: 0 !important; border-radius: 0;
    transition: transform 0.5s ease;
}
.media-row__img:hover img { transform: scale(1.03); }
.media-row__text p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
    .media-row { grid-template-columns: 1fr; gap: 18px; }
    .media-row--reverse .media-row__img { order: 0; }
}

/* tables: rounded card, uppercase green headers */
.table-scroll {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(216, 176, 78, 0.18);
    margin: 26px 0 30px;
    background: #0C100D;
}
.table-scroll table { margin: 0; border: 0; }
table thead th {
    background: #111813; color: #22D07A;
    text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; font-weight: 800;
    padding: 18px 22px;
}
table th, table td { padding: 15px 22px; background-color: transparent; }
table tbody tr:nth-child(even) td { background-color: rgba(255, 255, 255, 0.02); }
table tbody td:first-child { color: #EBC96A; font-weight: 600; }

/* numbered steps */
.page-text ol { list-style: none; counter-reset: step; margin: 14px 0 24px; }
.page-text ol li { counter-increment: step; padding-left: 48px; margin-bottom: 14px; min-height: 32px; line-height: 1.65; }
.page-text ol li::before {
    content: counter(step);
    position: absolute; left: 0; top: 0;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; color: #08090A;
    background: linear-gradient(135deg, #E6C15C, #A9822F);
    box-shadow: 0 0 0 3px rgba(216, 176, 78, 0.15);
}

/* CTA */
.content-btn {
    padding: 14px 34px; font-size: 16px; font-weight: 800;
    background: linear-gradient(135deg, #A9822F, #E6C15C 60%, #F6DE93);
    box-shadow: 0 8px 24px rgba(216, 176, 78, 0.25);
}
.content-btn:hover { box-shadow: 0 10px 30px rgba(34, 208, 122, 0.35); }

/* FAQ polish */
.faq__item { border-radius: 16px; transition: border-color 0.2s; }
.faq__item.open { border-color: rgba(34, 208, 122, 0.55); }
@media (max-width: 600px) { .content-box { padding: 22px 16px; border-radius: 16px; } .page-text p, .content-box p { font-size: 16px; } }
.header { background: rgba(10, 13, 11, 0.97); }
table th, table td { word-break: normal; overflow-wrap: break-word; }
@media (max-width: 600px) {
    .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .table-scroll table { min-width: 540px; }
    table thead th { font-size: 12px; letter-spacing: 0.05em; padding: 14px 14px; }
    table th, table td { padding: 12px 14px; font-size: 14px; }
}

/* ===== v2.3: narrower side margins, header menu, centred footer ===== */
.container, .footer__inner { max-width: 1400px; padding-left: 24px; padding-right: 24px; }
.banner-carousel { max-width: 1352px; }
.banner-carousel-wrapper { padding: 0 24px; }
.content-box { padding: 36px 36px; }
@media (max-width: 768px) {
    .container, .footer__inner { padding-left: 12px; padding-right: 12px; }
    .banner-carousel-wrapper { padding: 0 12px; }
}
@media (max-width: 600px) { .content-box { padding: 22px 14px; } }

.header__inner { padding-top: 12px; padding-bottom: 12px; }
.header-menu { justify-content: center; }
.main-nav__item a { font-size: 15px; font-weight: 600; opacity: 0.9; color: #F4F1E8; }
.main-nav__item a:hover { color: #EBC96A; text-decoration: none; opacity: 1; }
.main-nav__list { gap: 26px; }
@media (max-width: 1100px) and (min-width: 769px) {
    .main-nav__list { gap: 16px; }
    .main-nav__item a { font-size: 14px; }
    .logo-img { height: 36px; }
}
@media (max-width: 768px) {
    .header-menu { top: 100%; background: #0E1210; border-bottom: 1px solid rgba(216, 176, 78, 0.2); padding: 8px 16px 18px; }
    .header-menu.header-menu--open { transform: translateY(0); }
    .main-nav { width: 100%; }
    .main-nav__list { width: 100%; gap: 0; }
    .main-nav__item { width: 100%; }
    .main-nav__item a { display: block; padding: 12px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 16px; }
    .header-burger span, .header-burger span::before, .header-burger span::after { background: #EBC96A; width: 22px; }
    .header-burger { width: 32px; height: 32px; }
}

.footer__inner { align-items: center; text-align: center; }
.footer__nav-list { justify-content: center; }
.footer__copy { max-width: 760px; margin: 0 auto; }
.footer__logo img { margin: 0 auto 14px; }
@media (max-width: 600px) { .footer__nav-list { align-items: center; } }
.banner-carousel-wrapper { padding: 24px 24px 0; }
@media (max-width: 768px) { .banner-carousel-wrapper { padding: 14px 12px 0; } }
body { padding-bottom: 0 !important; }
.footer { margin-top: 48px; }
