:root {
    /* ===== Base / Neutrals (dark) ===== */
    --color-bg: #0B0E13;

    --color-text: #F2F4F7;
    --color-text-strong: #A8B0BC;

    --color-header: #0E1117;
    --color-footer: #0E1117;

    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: #26303A;

    --color-border-soft: rgba(255, 255, 255, 0.06);
    --color-border-softer: rgba(255, 255, 255, 0.05);

    /* ===== Brand (Jokabet mint + gold) ===== */
    --color-primary: #5DF07A;
    --color-primary-hover: #7BF593;
    --color-primary-active: #35C45A;

    --color-secondary: #E8B23A;
    --color-secondary-hover: #F0C566;
    --color-secondary-active: #B98A23;

    --color-link: #5DF07A;
    --color-link-hover: #7BF593;

    --color-btn-text-dark: #06210F;
    --color-btn-text-light: #FFFFFF;

    --gradient-btn-primary: linear-gradient(135deg, #35C45A, #5DF07A 70%);
    --gradient-btn-secondary: linear-gradient(135deg, #B98A23, #E8B23A 70%);

    /* ===== Hero glow ===== */
    --gradient-hero-left: radial-gradient(circle at top left, rgba(93, 240, 122, 0.14), transparent 55%);
    --gradient-hero-right: radial-gradient(circle at top right, rgba(232, 178, 58, 0.12), transparent 55%);

    /* ===== Sections ===== */
    --color-jackpot-bg1: #0E1117;
    --color-jackpot-bg2: #06080C;

    --color-games-bg: rgba(11, 14, 19, 0.98);
    --color-games-thumb-bg: #131822;

    /* ===== Banner / slider dots ===== */
    --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: #5DF07A;

    /* ===== Link underline gradient ===== */
    --color-link-underline-from: #5DF07A;
    --color-link-underline-to: #E8B23A;

    /* ===== Accessibility helpers ===== */
    --focus-ring: rgba(93, 240, 122, 0.35);
    --color-success: #22C55E;
    --color-error: #EF4444;
    --color-warning: #E8B23A;
  }

*,
*::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 #FEAF20;
}

.btn--primary:hover{
    box-shadow: 0 4px 10px 2px #4d5b00;
    background: #121418;
    color: #FEAF20;
}

.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(18, 20, 36, 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: #05060b;
    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: #121418;
    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: #171716;
        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: #FFB020;
    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: #FEAF20;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(225, 239, 56, 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: #FEAF20;
    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, rgb(114, 137, 0), #FEAF20 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 #1a1a2e;
    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: #1D2027;
  }

  table thead th {
    background-color: #000000;
    color: #FEAF20;
    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;
}
/* ===== Banner dots (slider control) ===== */
.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.banner-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    background: var(--color-banner-dot);
    border: 1px solid var(--color-banner-dot-border);
}
.banner-dot.is-active {
    background: var(--color-banner-dot-active);
    border-color: var(--color-banner-dot-active);
}

/* ==================================================================
   JOKABET BRAND LAYER — header, hero, content, FAQ, footer
   ================================================================== */

body { background:
    radial-gradient(1200px 600px at 12% -5%, rgba(93,240,122,0.07), transparent 60%),
    radial-gradient(900px 500px at 92% 0%, rgba(232,178,58,0.06), transparent 55%),
    var(--color-bg);
}

/* ---------- HEADER ---------- */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(14,17,23,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; }
.logo-img { height: 40px; width: 100px; object-fit: contain; }
.mainnav { display: flex; align-items: center; gap: 28px; }
.mainnav a {
    font-size: 15px; font-weight: 600; color: var(--color-text);
    opacity: .85; text-decoration: none; padding: 6px 0; position: relative;
}
.mainnav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--color-primary); transform: scaleX(0); transition: transform .2s ease;
}
.mainnav a:hover { opacity: 1; text-decoration: none; }
.mainnav a:hover::after { transform: scaleX(1); }
.auth { display: flex; align-items: center; gap: 10px; }
.btn { border-radius: 999px; font-weight: 700; padding: 11px 22px; }
.btn--outline { border: 1.5px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn--outline:hover { background: rgba(93,240,122,.1); text-decoration: none; }
.btn--primary { background: var(--gradient-btn-primary); color: var(--color-btn-text-dark); box-shadow: 0 8px 24px rgba(93,240,122,.18); }
.btn--primary:hover { filter: brightness(1.06); text-decoration: none; }

/* ---------- HERO ---------- */
.banner-carousel-wrapper { padding: 26px 16px 0; }
.banner-carousel { height: 420px; border-radius: 20px; border: 1px solid var(--color-border-soft); }
.banner-slide__image::after {
    background: linear-gradient(to right, rgba(6,9,14,0.94) 0%, rgba(6,9,14,0.78) 38%, rgba(6,9,14,0.15) 78%, rgba(6,9,14,0) 100%);
}
.banner-slide__content { margin-left: 48px; max-width: 540px; }
.banner-slide__title { font-size: 40px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 12px; }
.banner-slide__content p { font-size: 17px; margin-bottom: 22px; }
.banner-dots { bottom: 20px; gap: 10px; }
.banner-dot { width: 26px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.22); border: 0; transition: width .25s ease, background .25s ease; }
.banner-dot.is-active { width: 46px; background: var(--color-primary); }

/* ---------- STATS STRIP ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0 8px; }
.stat {
    background: linear-gradient(180deg, rgba(93,240,122,.07), rgba(255,255,255,.02));
    border: 1px solid rgba(93,240,122,.18);
    border-radius: 16px; padding: 22px 20px;
}
.stat__num { font-size: 30px; font-weight: 800; color: var(--color-primary); line-height: 1.1; }
.stat__label { margin-top: 6px; font-size: 14px; color: var(--color-text-strong); }

/* ---------- CONTENT ---------- */
.page-content { padding-top: 10px; }
.page-text { font-size: 17px; line-height: 1.68; }
.page-text h2 {
    clear: both; font-size: 30px; line-height: 1.2; font-weight: 800;
    margin: 46px 0 16px; padding-left: 16px; position: relative; letter-spacing: -0.01em;
}
.page-text h2::before {
    content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 5px;
    border-radius: 3px; background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}
.page-text p { margin: 0 0 14px; }
.page-text ul, .page-text ol { margin: 0 0 16px 0; padding-left: 0; list-style: none; }

/* floated in-text figures */
.fig { margin: 6px 0 18px; width: 46%; }
.fig img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--color-border-soft); display: block; }
.fig--right { float: right; margin-left: 28px; }
.fig--left  { float: left;  margin-right: 28px; }

/* numbered steps */
.page-text ol.steps { counter-reset: step; margin: 18px 0 22px; padding-left: 0; list-style: none; }
.page-text ol.steps li {
    counter-increment: step; position: relative;
    padding: 4px 0 4px 56px; margin-bottom: 14px; list-style: none;
    color: var(--color-text);
}
.page-text ol.steps li::before {
    content: counter(step); position: absolute; left: 0; top: 0;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; line-height: 1;
    color: var(--color-primary); border: 1.5px solid rgba(93,240,122,.45);
    background: rgba(93,240,122,.08);
}

/* tables */
.table-scroll {
    clear: both; width: 100%;
    border: 1px solid var(--color-border-soft); border-radius: 16px;
    overflow-x: auto; margin: 22px 0 24px;
}
.page-text table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.page-text thead th {
    text-align: left; padding: 14px 18px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--color-primary); background: rgba(93,240,122,.07); border-bottom: 1px solid var(--color-border-soft);
}
.page-text tbody td { padding: 14px 18px; border-bottom: 1px solid var(--color-border-softer); vertical-align: top; }
.page-text tbody tr:last-child td { border-bottom: 0; }
.page-text tbody tr:hover { background: rgba(255,255,255,.02); }

/* CTA band */
.cta-band {
    clear: both; margin: 34px 0; padding: 30px 28px; border-radius: 20px; text-align: center;
    background: linear-gradient(135deg, rgba(93,240,122,.12), rgba(232,178,58,.08));
    border: 1px solid rgba(93,240,122,.25);
}
.cta-band__title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: var(--color-text-strong); margin-bottom: 18px; }
.content-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 999px;
    font-weight: 800; background: var(--gradient-btn-primary); color: var(--color-btn-text-dark);
    box-shadow: 0 10px 30px rgba(93,240,122,.18);
}
.content-btn:hover { filter: brightness(1.06); text-decoration: none; }
.center-btn { text-align: center; margin: 24px 0; clear: both; }

/* ---------- FAQ (override donor yellow) ---------- */
.faq { margin-top: 40px; }
.faq .container { padding: 0; }
.faq__title { font-size: 30px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: rgba(255,255,255,.025) !important;
    border: 1px solid var(--color-border-soft); border-radius: 16px;
}
.faq__item.open { border-color: rgba(93,240,122,.4); }
.faq__question { color: var(--color-text) !important; padding: 20px 22px; font-size: 17px; }
.faq__question h3 { font-size: 17px; font-weight: 700; margin: 0; color: var(--color-text) !important; }
.faq__question:hover { background: rgba(93,240,122,.06); }
.faq__answer { color: var(--color-text) !important; }
.faq__answer p { color: #D7DDE6 !important; font-size: 16px; line-height: 1.6; }
.faq__icon::before, .faq__icon::after { background: var(--color-primary); }

/* ---------- FOOTER ---------- */
.footer { background: var(--color-footer); border-top: 1px solid var(--color-border-soft); padding: 34px 0 28px; }
.footer__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 16px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer__nav-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; list-style: none; margin: 0 0 20px; padding: 0; }
.footer__nav-link { font-weight: 700; font-size: 15px; color: var(--color-text); opacity: .9; }
.footer__nav-link:hover { color: var(--color-primary); text-decoration: none; }
.footer__age { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__age-badge {
    width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--color-primary); color: var(--color-primary); font-weight: 800; font-size: 14px; flex: none;
}
.footer__age-text { font-size: 15px; color: var(--color-text); }
.footer__age { margin-bottom: 0; }

/* ---------- BACK TO TOP ---------- */
.to-top {
    position: fixed; right: 22px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%;
    display: none; align-items: center; justify-content: center; cursor: pointer;
    background: rgba(14,17,23,.9); border: 1.5px solid rgba(93,240,122,.5); color: var(--color-primary);
    font-size: 20px; line-height: 1; z-index: 60;
}
.to-top.is-visible { display: flex; }
.to-top:hover { background: rgba(93,240,122,.12); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .mainnav { gap: 18px; }
    .mainnav a { font-size: 14px; }
}
@media (max-width: 900px) {
    .mainnav { display: none; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .banner-carousel { height: 340px; }
    .banner-slide__title { font-size: 30px; }
}
@media (max-width: 640px) {
    .banner-carousel { height: 300px; }
    .banner-slide__content { margin-left: 18px; margin-right: 18px; }
    .banner-slide__title { font-size: 25px; }
    .banner-slide__content p { font-size: 15px; }
    .fig, .fig--right, .fig--left { float: none; width: 100%; margin-left: 0; margin-right: 0; }
    .page-text h2 { font-size: 24px; }
    .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat__num { font-size: 24px; }
}
