:root {
    --color-bg: #0C0A1F;
    --color-text: #ffffff;
    --color-text-strong: #C9C3E6;
    --color-text-muted: #B3ACD6;
    --color-text-dim: rgba(255, 255, 255, 0.72);
    --color-text-subtle: rgba(255, 255, 255, 0.55);
    --color-text-accent: #45D8FF;
    --color-header: #130F2E;
    --color-footer: #130F2E;
    --color-sidebar-bg: #130F2E;
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: #2A2260;
    --color-surface:   #1A1540;
    --color-surface-2: #221B52;
    --color-bg-deep:   #08061A;
    --color-border-soft:   rgba(255, 255, 255, 0.08);
    --color-border-softer: rgba(255, 255, 255, 0.05);
    --color-border-strong: rgba(255, 255, 255, 0.15);
    --color-primary:        #8B3DFF;
    --color-primary-hover:  #9D5CFF;
    --color-primary-active: #7A25F5;
    --color-primary-pressed:#6414D6;
    --color-secondary:        #007BFB;
    --color-secondary-hover:  #2E93FF;
    --color-secondary-active: #0062CC;
    --color-link:       #45D8FF;
    --color-link-hover: #8DE9FF;
    --color-btn-text-dark:  #ffffff;
    --color-btn-text-light: #ffffff;
    --gradient-btn-primary:   linear-gradient(135deg, #7D25FC, #007BFB 100%);
    --gradient-btn-secondary: linear-gradient(135deg, #6414D6, #2E93FF 100%);
    --gradient-hero-left:  radial-gradient(circle at top left,  rgba(125, 37, 252, 0.20), transparent 55%);
    --gradient-hero-right: radial-gradient(circle at top right, rgba(0, 123, 251, 0.16), transparent 55%);
    --color-jackpot-bg1:    #1A1540;
    --color-jackpot-bg2:    #08061A;
    --color-games-bg:       rgba(12, 10, 31, 0.98);
    --color-games-thumb-bg: #1A1540;
    --color-banner-bg:         #08061A;
    --color-banner-dot:        rgba(0, 0, 0, 0.6);
    --color-banner-dot-border: rgba(255, 255, 255, 0.6);
    --color-banner-dot-active: #1FE2FF;
    --color-link-underline-from: #7D25FC;
    --color-link-underline-to:   #1FE2FF;
    --focus-ring:    rgba(69, 216, 255, 0.45);
    --color-success: #22C55E;
    --color-error:   #EF4444;
    --color-warning: #FFB547;
    --color-badge-live: #e63946;
    --color-badge-fast: #1FE2FF;
}


*,
*::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 var(--color-primary);
}

.btn--primary:hover {
    box-shadow: 0 4px 10px 2px rgba(139, 61, 255, 0.3);
    background: var(--color-bg);
    color: var(--color-primary);
}



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

.scrolled {
    position: fixed !important;
}

.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;
        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 ====== */

.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: var(--color-surface);
    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: var(--color-footer);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--color-border-soft);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__inner p {
    font-size: 14px;
    color: rgba(245, 245, 247, 0.9);
    margin: 0;
    max-width: 500px;
    line-height: 1.45;
}

.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;
}
.content-box > ol li,
.content-box > ul li
    {
    margin-left: 15px;
}
.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-accent);
}

.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 {
    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-primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.content-box {
    background: var(--color-surface);
    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: var(--color-header);
        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%;
    }

    .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: var(--color-primary);
    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(45deg);
}

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

.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: var(--color-primary);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(139, 61, 255, 0.5);
}

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

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    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: var(--gradient-btn-primary);
    color: var(--color-btn-text-dark);
    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 var(--color-card-border);
    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 var(--color-border-soft);
    font-size: 15px;
    color: var(--color-text);
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    min-width: 110px;
    background-color: var(--color-surface);
}

table thead th {
    background-color: var(--color-bg-deep);
    color: var(--color-primary);
    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__navigation {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 16px;
}

.footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer__item {
    padding: 0;
    background: none;
    margin: 0;
}

.footer__item::before {
    display: none;
}

.footer__link {
    font-size: 13px;
    color: var(--color-text-dim);
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.footer__link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer__bottom {
    width: 100%;
    padding: 0 16px;
    border-top: 1px solid var(--color-border-soft);
    padding-top: 16px;
    margin-top: 8px;
}

.footer__disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: var(--color-text-subtle);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer__list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__disclaimer {
        font-size: 11px;
    }
}


/* ==============================================
   SIDEBAR
   ============================================== */

:root {
    --header-height: 64px;
    --sidebar-width: 200px;
    --sidebar-collapsed-width: 64px;
    --sidebar-bg: var(--color-sidebar-bg);
    --sidebar-border: rgba(255, 255, 255, 0.06);
    --sidebar-item-color: #8a93a6;
    --sidebar-item-hover: #ffffff;
    --sidebar-item-active: var(--color-primary);
    --sidebar-item-active-bg: rgba(139, 61, 255, 0.08);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    height: var(--header-height);
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border-soft);
}

.header__inner {
    height: 100%;
    max-width: 100%;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.header-burger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.layout {
    display: flex;
    padding-left: var(--sidebar-width);
    transition: padding-left 0.25s ease;
    flex: 1 0 auto;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

body.sidebar-collapsed .layout {
    padding-left: var(--sidebar-collapsed-width);
}

.layout main {
    flex: 1 0 auto;
}

.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 14px 10px 60px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.25s ease, transform 0.25s ease;
}

body.sidebar-collapsed .sidebar {
    width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .sidebar__title {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

body.sidebar-collapsed .sidebar__link {
    justify-content: center;
    padding: 10px 8px;
}

body.sidebar-collapsed .sidebar__collapse svg {
    transform: rotate(180deg);
}

.sidebar__nav {
    flex: 1;
}

.sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar__item {
    position: relative;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--sidebar-item-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.sidebar__link:hover {
    color: var(--sidebar-item-hover);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

.sidebar__item.is-active .sidebar__link {
    color: var(--sidebar-item-active);
    background: var(--sidebar-item-active-bg);
}

.sidebar__item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--sidebar-item-active);
}

.sidebar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__icon svg {
    width: 100%;
    height: 100%;
}

.sidebar__title {
    transition: opacity 0.2s ease;
}

.sidebar__collapse {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 12px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sidebar-border);
    border-radius: 10px;
    color: var(--sidebar-item-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar__collapse:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sidebar-item-hover);
}

.sidebar__collapse svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.sidebar__close {
    display: none;
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sidebar__overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 45;
    opacity: 0;
    transition: opacity 0.2s ease;
}

body.sidebar-mobile-open .sidebar__overlay {
    display: block;
    opacity: 1;
}

@media (max-width: 960px) {
    .layout {
        padding-left: 0;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 260px;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.6);
    }

    body.sidebar-mobile-open .sidebar {
        transform: translateX(0);
    }

    .sidebar__close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar__collapse {
        display: none;
    }

    .sidebar__title {
        display: inline-block !important;
        opacity: 1 !important;
        width: auto !important;
    }

    .sidebar__link {
        padding: 12px 14px;
        font-size: 14px;
    }

    .header-burger {
        display: inline-flex;
    }

    body.sidebar-collapsed .layout {
        padding-left: 0;
    }

    body.sidebar-collapsed .sidebar {
        width: 260px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .header__inner {
        padding: 10px 12px;
        gap: 8px;
    }

    .logo-img {
        height: 36px;
    }

    .auth .btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}


/* ==============================================
   LIVE-CASINO
   ============================================== */

.live-casino-section {
    padding: 24px 0 40px;
}

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

.live-casino-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.live-casino-header h1 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.live-casino-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.live-casino-tile {
    background: var(--color-surface);
    border-radius: 10px;
    border: 1px solid var(--color-border-softer);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.live-casino-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 61, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.live-casino-tile__image {
    position: relative;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: radial-gradient(ellipse at top, var(--color-surface-2) 0%, var(--color-bg-deep) 70%);
}

.live-casino-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.2s ease;
}

.live-casino-tile:hover .live-casino-tile__image img {
    transform: scale(1.05);
    filter: blur(2px) brightness(0.55);
}

.live-casino-tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 3;
}

.live-casino-tile:hover .live-casino-tile__overlay {
    opacity: 1;
}

.live-casino-tile__play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-btn-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(139, 61, 255, 0.18);
    transform: scale(0.85);
    transition: transform 0.2s ease;
}

.live-casino-tile:hover .live-casino-tile__play {
    transform: scale(1);
}

.live-casino-tile__play svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.live-casino-tile__meta {
    padding: 10px 12px 12px;
    background: var(--color-surface-2);
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-top: 1px solid var(--color-border-softer);
}

.live-casino-tile__provider {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-casino-tile__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-casino-tile__stake {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-dim);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-casino-tile__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--color-badge-live);
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1.3;
    z-index: 2;
}

.live-casino-tile__badge--fast {
    background: var(--color-badge-fast);
    color: var(--color-btn-text-dark);
}

@media (max-width: 1100px) {
    .live-casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .live-casino-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .live-casino-tile__provider { font-size: 9px; }
    .live-casino-tile__name     { font-size: 12px; }
    .live-casino-tile__stake    { font-size: 10px; }
    .live-casino-tile__meta     { padding: 8px 10px 10px; }
}

@media (max-width: 420px) {
    .live-casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==============================================
   PROMOTIONS
   ============================================== */

.promotions-section {
    padding: 24px 0 40px;
}

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

.promotions-header {
    margin-bottom: 20px;
}

.promotions-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.promo-banner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-banner__link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--color-border-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    background: var(--color-surface);
}

.promo-banner__link:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 61, 255, 0.4);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

.promo-banner__image {
    position: relative;
    aspect-ratio: 1920 / 757;
    background: linear-gradient(135deg, var(--color-surface-2), var(--color-bg-deep));
    overflow: hidden;
}

.promo-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.promo-banner__link:hover .promo-banner__image img {
    transform: scale(1.03);
}

.promo-banner__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
        radial-gradient(circle at 15% 90%, rgba(0, 0, 0, 0.35), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.promo-banner__svg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.promo-banner__svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.promo-banner__text {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 55%;
    color: #fff;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-banner__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 2px;
}

.promo-banner__sub {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.promo-banner__amount {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.promo-banner__extra {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2px;
    line-height: 1.1;
}

.promo-banner__footer {
    background: var(--color-bg-deep);
    padding: 10px 16px;
    text-align: center;
}

.promo-banner__dates {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--color-border-soft);
    letter-spacing: 0.02em;
}

.promo-banner__note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    padding: 0 4px;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .promo-banner__title  { font-size: 20px; }
    .promo-banner__amount { font-size: 18px; }
    .promo-banner__sub    { font-size: 13px; }
}

@media (max-width: 900px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .promo-banner__title  { font-size: 26px; }
    .promo-banner__amount { font-size: 20px; }
}

/* ===== Roby overrides ===== */
.layout__content { display: flex; flex-direction: column; flex: 1 0 auto; min-width: 0; }
.layout__content > main { flex: 1 0 auto; }
.logo-img { width: auto; height: 40px; aspect-ratio: 18 / 5; object-fit: contain; }
@media (max-width: 768px) { .logo-img { height: 34px; } }
.btn--primary, .content-btn { color: #ffffff; }
.content-box a { color: var(--color-link); }
.content-box a:hover { color: var(--color-link-hover); }
.content-box a.content-btn, .content-box a.content-btn:hover { color: #ffffff; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--color-link); outline-offset: 2px; }
@media (max-width: 768px) { .banner-slide__image img { object-position: 65% 50%; } }
.byline { font-size: 14px; color: var(--color-text-subtle); }
.img-center img { border-radius: 14px; }
.content-box h2[id], .content-box h3[id] { scroll-margin-top: 80px; }

.toc { margin: 28px 0 8px; padding: 18px 22px; border: 1px solid var(--color-card-border); border-radius: 14px; background: var(--color-surface); }
.toc__title { font-weight: 700; font-size: 18px; margin-bottom: 10px; color: var(--color-text); }
.content-box .toc__list { columns: 2; column-gap: 32px; margin: 0; padding-left: 22px; }
.content-box .toc__list li { break-inside: avoid; margin: 0 0 6px; padding: 0; background: none; }
.content-box .toc__list li::before { display: none; }
@media (max-width: 600px) { .content-box .toc__list { columns: 1; } }

.content-box .table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0 26px; border: 1px solid var(--color-card-border); border-radius: 12px; }
.content-box .table-scroll table { display: table !important; width: 100%; margin: 0; border: 0; border-collapse: collapse; }
.content-box .table-scroll table:has(thead) { min-width: 560px; }
.content-box .table-scroll thead { display: table-header-group; }
.content-box .table-scroll tbody { display: table-row-group; }
.content-box .table-scroll tr { display: table-row; }
.content-box .table-scroll th, .content-box .table-scroll td { display: table-cell; width: auto; min-width: 0; vertical-align: top; text-align: left; }
.content-box .table-scroll thead th { font-size: 15px; color: var(--color-link); }
.content-box .table-scroll th[scope="row"] { width: 34%; background: var(--color-bg-deep); color: var(--color-text); font-weight: 600; font-size: 15px; }

.faq { padding: 24px 0 8px; }
.content-box .faq__title { color: var(--color-text); }
.faq__list { gap: 12px; }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-card-border); border-left: 3px solid var(--color-primary); border-radius: 12px; }
.content-box .faq__heading { margin: 0; padding: 0; font-size: 17px; line-height: 1.35; }
.faq__question { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; margin: 0; padding: 16px 20px; background: none; border: 0; color: var(--color-text); font: inherit; font-weight: 600; text-align: left; cursor: pointer; }
.faq__question:hover { background: rgba(255, 255, 255, 0.04); }
.faq__question:focus-visible { outline: 2px solid var(--color-link); outline-offset: -2px; }
.faq__icon { flex: 0 0 16px; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after { background: var(--color-link); height: 2px; }
.faq__icon::before { transform: rotate(0deg); }
.faq__icon::after { transform: rotate(90deg); }
.faq__item.open .faq__icon::after { transform: rotate(0deg); opacity: 0; }
.faq__answer p { color: var(--color-text-dim) !important; margin: 0; }
.faq__item.open .faq__answer { max-height: 600px; padding: 0 20px 18px; }
.no-js .faq__answer { max-height: none; padding: 0 20px 18px; }
@media (prefers-reduced-motion: reduce) { .banner-slide, .faq__answer { transition: none; } }

/* ===== Roby design layer =====
   Signature: the tapered cyan speed line from the R mark.
   Used under headings, on nav hover, in the sidebar and on the header edge. */

@font-face { font-family: "Chakra Petch"; src: url("/assets/fonts/chakra-petch-semibold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Chakra Petch"; src: url("/assets/fonts/chakra-petch-bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
    --font-display: "Chakra Petch", "Segoe UI", system-ui, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --speed: #1FE2FF;
    --violet: #7D25FC;
    --blue: #007BFB;
    --chamfer: 10px;
    --sidebar-item-active: #ffffff;
    --sidebar-item-active-bg: linear-gradient(90deg, rgba(125, 37, 252, 0.28), rgba(0, 123, 251, 0.08));
    --sidebar-item-color: #A9A2CF;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(1100px 520px at 88% -120px, rgba(125, 37, 252, 0.20), transparent 70%),
        radial-gradient(900px 480px at 8% -80px, rgba(0, 123, 251, 0.12), transparent 70%),
        var(--color-bg);
    background-repeat: no-repeat;
}

/* ---------- header ---------- */
.header {
    background: rgba(19, 15, 46, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 0;
}
.header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--violet) 0%, var(--speed) 38%, rgba(31, 226, 255, 0) 80%);
    opacity: 0.7;
}
.header-menu { flex: 1; justify-content: center; }
.main-nav__list { gap: 30px; }
.main-nav__item a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: var(--color-text-strong);
    opacity: 1;
    padding: 6px 0;
}
.main-nav__item a:hover { color: #ffffff; text-decoration: none; }
.main-nav__item a::after {
    bottom: -2px;
    height: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(90deg, rgba(31, 226, 255, 0.15), var(--speed));
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 55%);
}
.main-nav__item a:hover::after, .main-nav__item a:focus-visible::after { width: 100%; }
@media (max-width: 1100px) { .header-menu { display: none; } }

/* ---------- buttons ---------- */
.btn, .content-btn { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; }
.btn--primary, .content-btn {
    border: 0;
    border-radius: 0;
    background: var(--gradient-btn-primary);
    color: #ffffff;
    clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
    transition: filter 0.15s ease, transform 0.15s ease;
}
.btn--primary:hover, .content-btn:hover {
    background: var(--gradient-btn-primary);
    color: #ffffff;
    filter: brightness(1.15) saturate(1.1);
    box-shadow: none;
    transform: translateY(-1px);
}
.btn--primary:focus-visible, .content-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: -5px; }
.btn--outline { border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.35); color: #ffffff; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.08); color: #ffffff; border-color: var(--speed); box-shadow: none; }
.content-btn { padding: 13px 30px; font-size: 16px; }

/* ---------- banner carousel ---------- */
.banner-carousel {
    border-radius: 16px;
    border: 1px solid var(--color-card-border);
    box-shadow: 0 18px 50px rgba(8, 6, 26, 0.6), 0 0 0 1px rgba(125, 37, 252, 0.12) inset;
}
.banner-slide__image::after {
    background: linear-gradient(to right, rgba(12, 10, 31, 0.86) 0%, rgba(12, 10, 31, 0.55) 40%, rgba(12, 10, 31, 0.05) 70%);
}
.banner-slide__content > .banner-slide__title {
    position: relative;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.12;
    color: #ffffff;
    padding-top: 14px;
    margin-bottom: 12px;
}
.banner-slide__content > .banner-slide__title::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 88px; height: 4px;
    background: linear-gradient(90deg, rgba(31, 226, 255, 0.1), var(--speed));
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 55%);
}
.banner-dot { width: 10px; height: 10px; }
.banner-dot.is-active { width: 28px; border-radius: 5px; background: var(--speed); border-color: var(--speed); transform: none; }
@media (max-width: 768px) {
    .banner-slide__content > .banner-slide__title { font-size: 21px; padding-top: 10px; }
    .banner-slide__image::after { background: linear-gradient(to right, rgba(12, 10, 31, 0.88) 0%, rgba(12, 10, 31, 0.62) 60%, rgba(12, 10, 31, 0.3) 100%); }
}

/* ---------- content panel ---------- */
.content-box {
    position: relative;
    background: linear-gradient(180deg, rgba(34, 27, 82, 0.55) 0%, rgba(26, 21, 64, 0.92) 220px), var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 24px 60px rgba(8, 6, 26, 0.45);
}
.content-box::before {
    content: "";
    position: absolute;
    left: 40px; right: 40px; top: -1px;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--speed) 45%, rgba(31, 226, 255, 0) 100%);
}
@media (max-width: 768px) {
    .content-box { padding: 24px 18px; border-radius: 14px; }
    .content-box::before { left: 18px; right: 18px; }
}

/* ---------- typography ---------- */
.content-box h1, .content-box h2, .content-box h3, .toc__title { font-family: var(--font-display); letter-spacing: 0.005em; }
.content-box h1 { font-size: 38px; line-height: 1.1; font-weight: 700; color: #ffffff; margin-bottom: 18px; }
.content-box h2 {
    position: relative;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 44px 0 18px;
    padding-bottom: 14px;
}
.content-box h2::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 96px; height: 4px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(90deg, rgba(31, 226, 255, 0.12), var(--speed));
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 55%);
}
.content-box h3 { font-size: 21px; font-weight: 600; color: #CDB5FF; margin: 30px 0 12px; }
.content-box p { color: #D6D1EE; line-height: 1.65; }
.content-box ul li { color: #D6D1EE; line-height: 1.6; }
.content-box ul li::before {
    width: 8px; height: 8px;
    top: 9px; left: 3px;
    border-radius: 2px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--violet), var(--speed));
}
@media (max-width: 768px) {
    .content-box h1 { font-size: 29px; }
    .content-box h2 { font-size: 23px; margin-top: 36px; }
    .content-box h3 { font-size: 19px; }
}

/* numbered steps: only real sequences (direct ol in content) */
.content-box > ol { list-style: none; counter-reset: step; margin: 14px 0 22px; padding: 0; }
.content-box > ol li { counter-increment: step; position: relative; margin: 0 0 12px; padding: 4px 0 4px 50px; color: #D6D1EE; line-height: 1.6; }
.content-box > ol li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 2px;
    width: 34px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    background: var(--gradient-btn-primary);
    clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

/* ---------- TOC ---------- */
.toc { background: rgba(8, 6, 26, 0.55); border-radius: 14px; padding: 20px 24px; }
.toc__title { font-weight: 700; font-size: 17px; color: #ffffff; }
.content-box .toc__list { list-style: none; padding-left: 0; }
.content-box .toc__list li { position: relative; padding-left: 18px; }
.content-box .toc__list li::before {
    display: block;
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 10px; height: 3px;
    border-radius: 0 2px 2px 0;
    background: var(--speed);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 60%);
    transform: none;
}
.content-box .toc__list a { color: var(--color-text-strong); }
.content-box .toc__list a:hover { color: var(--speed); text-decoration: none; }

/* ---------- tables ---------- */
.content-box .table-scroll { background: rgba(8, 6, 26, 0.35); }
.content-box .table-scroll td, .content-box .table-scroll th { background: transparent; border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding: 12px 14px; line-height: 1.45; }
.content-box .table-scroll thead th {
    font-family: var(--font-display);
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(125, 37, 252, 0.34), rgba(0, 123, 251, 0.20));
}
.content-box .table-scroll tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.025); }
.content-box .table-scroll tbody tr:hover td { background: rgba(31, 226, 255, 0.05); }
.content-box .table-scroll th[scope="row"] { background: rgba(125, 37, 252, 0.12); color: #ffffff; }
.content-box .table-scroll tr:last-child td, .content-box .table-scroll tr:last-child th { border-bottom: 0; }

/* ---------- images ---------- */
.img-center img { border: 1px solid var(--color-card-border); box-shadow: 0 16px 40px rgba(8, 6, 26, 0.5); }

/* ---------- FAQ ---------- */
.content-box .faq__heading { font-family: var(--font-display); font-weight: 600; }
.faq__item { border-left: 0; position: relative; overflow: hidden; }
.faq__item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--violet), var(--speed)); }
.faq__item.open { border-color: rgba(31, 226, 255, 0.35); }

/* ---------- sidebar ---------- */
.sidebar { background: rgba(19, 15, 46, 0.96); }
.sidebar__link { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.sidebar__icon { color: #8C84BF; }
.sidebar__link:hover .sidebar__icon { color: var(--speed); }
.sidebar__item.is-active .sidebar__link { background: var(--sidebar-item-active-bg); }
.sidebar__item.is-active .sidebar__icon { color: var(--speed); }
.sidebar__item.is-active::before { background: linear-gradient(180deg, var(--violet), var(--speed)); }

/* ---------- footer ---------- */
.footer { position: relative; border-top: 0; background: #0E0B24; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, rgba(31, 226, 255, 0) 5%, var(--violet) 40%, var(--speed) 60%, rgba(31, 226, 255, 0) 95%); opacity: 0.6; }
.footer__link { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.footer__link:hover { color: var(--speed); }

@media (prefers-reduced-motion: reduce) {
    .btn--primary, .content-btn, .main-nav__item a::after { transition: none; }
}
