@font-face {
    font-family: 'CustomFont';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #4E8DFF;
    --primary-hover: #3577E6;
    --primary-rgb: 78, 141, 255;
    --accent: #7C6BFF;
    --accent-hover: #6856F0;
    --accent-rgb: 124, 107, 255;
    --on-primary: #FFFFFF;

    --bg: #07162B;
    --surface: #0D2140;
    --surface-muted: #132A4C;
    --footer-bg: #050F1F;
    --footer-text: #DCE8FA;
    --footer-text-muted: #8EA8CF;
    --footer-heading-color: #FFFFFF;
    --footer-link-color: #B7C9E8;
    --footer-link-hover: #8AB6FF;
    --footer-border: rgba(124,107,255,0.18);
    --footer-copy-color: #738CB3;

    --text: #EDF4FF;
    --text-muted: #AFC3E6;
    --text-soft: #7F97BF;

    --border: #27446D;

    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --font-family: 'CustomFont', Arial, Helvetica, sans-serif;
    --line-height: 1.6;

    --blockquote-border: #7C6BFF;
    --blockquote-bg: #10233F;
    --blockquote-text: #E2ECFA;

    --btn-login-bg: transparent;
    --btn-login-text: #8AB6FF;
    --btn-login-border: #4E8DFF;
    --btn-login-hover-bg: #112949;
    --btn-login-hover-text: #FFFFFF;
    --btn-register-bg: #7C6BFF;
    --btn-register-text: #FFFFFF;
    --btn-register-hover-bg: #6856F0;
    --btn-register-hover-text: #FFFFFF;

    --nav-link-color: #D7E6FB;
    --nav-link-hover: #8AB6FF;
    --nav-link-hover-bg: rgba(78,141,255,0.10);

    --breadcrumb-link-color: #9AB2D5;
    --breadcrumb-link-hover: #8AB6FF;
    --breadcrumb-current-color: #EDF4FF;
    --breadcrumb-sep-color: #6E87AD;

    --scroll-top-bg: #4E8DFF;
    --scroll-top-color: #FFFFFF;
    --scroll-top-hover-bg: #3577E6;

    --content-link-color: #8AB6FF;
    --content-link-hover: #A596FF;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #8AB6FF;
    --content-btn-login-border: #4E8DFF;
    --content-btn-login-hover-bg: #112949;
    --content-btn-login-hover-text: #FFFFFF;
    --content-btn-register-bg: #7C6BFF;
    --content-btn-register-text: #FFFFFF;
    --content-btn-register-hover-bg: #6856F0;
    --content-btn-register-hover-text: #FFFFFF;

    --table-head-bg: #4E8DFF;
    --table-head-text: #FFFFFF;
    --table-row-even-bg: #112543;
    --table-row-hover: rgba(78, 141, 255, 0.05);

    --bonus-bar-bg: #163463;
    --bonus-bar-text: #FFFFFF;
    --bonus-bar-btn-bg: #7C6BFF;
    --bonus-bar-btn-text: #FFFFFF;

    --popup-bg: #0A1A31;
    --popup-title-color: #FFFFFF;
    --popup-subtitle-color: #B2C4E3;
    --popup-btn-bg: #4E8DFF;
    --popup-btn-text: #FFFFFF;
    --popup-card-bg: #122746;
    --popup-card-border: #7C6BFF;
    --popup-bonus-name-color: #FFFFFF;
    --popup-bonus-amount-color: #9F92FF;

    --header-bg: #081425;
    --header-border: #1E375B;
    --header-shadow: 0 2px 14px rgba(0,0,0,0.34);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #FFFFFF;
    --games-card-bg: #0E2140;
    --games-card-radius: 14;
    --games-arrow-bg: #4E8DFF;
    --games-arrow-color: #FFFFFF;

    --payments-title-color: #FFFFFF;
    --payments-card-bg: #0E2140;
    --payments-card-radius: 10px;
    --payments-name-color: #B2C4E3;

    --help-title-color: #FFFFFF;
    --help-card-bg: #0E2140;
    --help-card-border: #27446D;
    --help-card-radius: 14;
    --help-btn-bg: #4E8DFF;
    --help-btn-text: #FFFFFF;
    --help-btn-hover: #3577E6;
}

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

*, button, input, select, textarea {
    font-family: inherit;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg);
    color: var(--text);
    line-height: var(--line-height);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ================================================================
   SITE HEADER
   ================================================================ */
.l3BHDts {
    background: var(--header-bg, var(--bg));
    border-bottom: 1px solid var(--header-border, var(--border));
    box-shadow: var(--header-shadow, 0 2px 12px rgba(0,0,0,0.06));
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nJIt2RD {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.e0jPtqf {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.VmbzOGi {
    height: var(--header-logo-height, 42px);
    max-width: var(--header-logo-max-width);
    width: auto;
    display: block;
    object-fit: contain;
}

.K4zNVm3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

/* Desktop navigation */
.zewBEze {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.zewBEze a {
    text-decoration: none;
}

.JbPJV4r {
    color: var(--nav-link-color, var(--text-muted));
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.JbPJV4r:hover,
.JbPJV4r.active {
    color: var(--nav-link-hover, var(--primary));
    background: var(--nav-link-hover-bg, rgba(var(--primary-rgb), 0.08));
}

/* Desktop dropdown */
.svxPoye {
    position: relative;
}

.svxPoye > a,
.svxPoye > span {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.svxPoye > a::after,
.svxPoye > span::after {
    content: '';
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.svxPoye:hover > a::after,
.svxPoye:hover > span::after {
    transform: rotate(-135deg);
}

.xevM0k2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1002;
    list-style: none;
    padding: 0.4rem 0;
}

.svxPoye:hover .xevM0k2 {
    display: block;
}

.xevM0k2 a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.xevM0k2 a:hover {
    background: var(--surface-muted);
    color: var(--primary);
}

.xevM0k2 a.active {
    color: var(--primary);
}

/* Header buttons */
.lRtRMZ9 {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Hamburger */
.GwL6AXA {
    display: none;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.GwL6AXA span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.GwL6AXA span:nth-child(1) { top: 4px; }
.GwL6AXA span:nth-child(2) { top: 13px; }
.GwL6AXA span:nth-child(3) { top: 22px; }

.GwL6AXA.active span:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
}
.GwL6AXA.active span:nth-child(2) {
    opacity: 0;
}
.GwL6AXA.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
}

/* Mobile header: action buttons row */
.UTXNOEV {
    display: none;
    flex: 0 0 auto;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.UTXNOEV .v03ayfj {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.UTXNOEV .v03ayfj:hover {
    transform: translateY(-1px);
}

/* Mobile nav overlay (backdrop) */
.Tngxdce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.Tngxdce.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.ASudZ8J {
    overflow: hidden;
}

/* Mobile navigation panel */
.Gvec093 {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    max-width: 320px;
    background: var(--bg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 1.5rem 2rem;
    padding-top: max(2.75rem, calc(env(safe-area-inset-top) + 2rem));
    flex-direction: column;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    z-index: 999;
    overflow-y: auto;
}

.Gvec093.active {
    transform: translateX(0);
}

.SSlmby6 {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
}
.SSlmby6:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--text);
}

.Gvec093 > a:not(.JttJqPx) {
    display: block;
    padding: 0.6rem 0;
    color: var(--nav-link-color, var(--text));
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: none;
}

.Gvec093 > a:not(.JttJqPx):hover,
.Gvec093 > a.active {
    color: var(--nav-link-hover, var(--primary));
}

/* Mobile dropdown */
.Gvec093 .LJPFpdC {
    display: flex;
    flex-direction: column;
}

.Gvec093 .va4qDgX {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--nav-link-color, var(--text));
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    font-weight: 500;
}

.Gvec093 .va4qDgX:hover,
.Gvec093 .va4qDgX.active {
    color: var(--nav-link-hover, var(--primary));
}

.Gvec093 .nIBGuTA {
    display: block;
    padding: 0 0 0 1rem;
}

.Gvec093 .nIBGuTA a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--nav-link-color, var(--text-muted));
    text-decoration: none;
}

.Gvec093 .nIBGuTA a:hover,
.Gvec093 .nIBGuTA a.active {
    color: var(--nav-link-hover, var(--primary));
}

/* ================================================================
   BUTTONS
   ================================================================ */
.JttJqPx, a.JttJqPx {
    padding: 0.65rem 1.4rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.eOWM0gR, a.JttJqPx.eOWM0gR {
    background: var(--btn-login-bg);
    color: var(--btn-login-text);
    border: 2px solid var(--btn-login-border) !important;
}

.eOWM0gR:hover, a.JttJqPx.eOWM0gR:hover {
    background: var(--btn-login-hover-bg);
    color: var(--btn-login-hover-text);
    border-color: var(--btn-login-hover-bg) !important;
}

.HSI5gLr {
    background: var(--btn-register-bg);
    color: var(--btn-register-text);
}

.HSI5gLr:hover {
    background: var(--btn-register-hover-bg);
    color: var(--btn-register-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.lrgP4Wv {
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 0;
}

.lrgP4Wv + .TtIZYLV {
    padding-top: 1rem;
}

.OyfEhPd {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0.35rem;
    list-style: none;
    font-size: 0.85rem;
}

.m18WFg6 {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.m18WFg6 a {
    color: var(--breadcrumb-link-color, var(--text-muted));
    text-decoration: none;
    transition: color 0.2s;
}

.m18WFg6 a:hover {
    color: var(--breadcrumb-link-hover, var(--primary));
}

.wqbRsQ5 {
    color: var(--breadcrumb-sep-color, var(--text-soft));
    opacity: 0.6;
    user-select: none;
}

.GZ4irwQ {
    color: var(--breadcrumb-current-color, var(--text));
    font-weight: 500;
}

/* ================================================================
   PAGE WRAPPER & CONTENT
   ================================================================ */
.TtIZYLV {
    flex: 1;
    width: 100%;
    padding: 2.5rem 0 3rem;
}

.EC7kK2M {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.aI0TFPK {
    background: var(--bg);
    border-radius: 0;
    padding: 0;
}

.aI0TFPK h1 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.aI0TFPK h2 {
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary);
}

.aI0TFPK h3 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.aI0TFPK h4 {
    color: var(--text);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.aI0TFPK strong, .aI0TFPK b {
    font-weight: 700;
    color: var(--text);
}

.aI0TFPK p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.aI0TFPK a:not(.JttJqPx) {
    color: var(--content-link-color, var(--primary));
    text-decoration: none;
    transition: color 0.2s;
}

.aI0TFPK a:not(.JttJqPx):not(.LngudnG):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

.aI0TFPK img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    max-height: 500px;
}

.aI0TFPK blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--blockquote-border);
    background: var(--blockquote-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--blockquote-text);
    font-size: 1.02rem;
    line-height: 1.7;
}

.aI0TFPK blockquote p {
    margin-bottom: 0.5rem;
    color: inherit;
}

.aI0TFPK blockquote p:last-child {
    margin-bottom: 0;
}

.aI0TFPK ul, .aI0TFPK ol {
    margin-bottom: 1.25rem;
    padding-left: 1.8rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.aI0TFPK ul li, .aI0TFPK ol li {
    margin-bottom: 0.6rem;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.aI0TFPK ul li { list-style-type: disc; }
.aI0TFPK ol li { list-style-type: decimal; }

/* ================================================================
   IMAGE FLOAT (inline shortcodes imgleft / imgright)
   ================================================================ */
.D1RLV2F {
    float: left;
    margin: 0.25rem 1.5rem 1rem 0;
    max-width: 40%;
}

.WewCMHx {
    float: right;
    margin: 0.25rem 0 1rem 1.5rem;
    max-width: 40%;
}

.D1RLV2F img,
.WewCMHx img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.D1RLV2F ~ ul,
.D1RLV2F ~ ol,
.WewCMHx ~ ul,
.WewCMHx ~ ol {
    overflow: hidden;
    padding-left: 2.5rem;
}

.J1d8wi0 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.J1d8wi0 img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.ahgzPDK {
    text-align: left;
}

.ahgzPDK img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.hu6us56 {
    text-align: right;
}

.hu6us56 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* ================================================================
   COLUMNS (block editor)
   ================================================================ */
.suc2OxV {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.CIzsz6u { grid-template-columns: repeat(2, 1fr); }
.ZbbSns0 { grid-template-columns: repeat(3, 1fr); }
.HLSVcRb { grid-template-columns: repeat(4, 1fr); }

.TcvUAJF > *:last-child {
    margin-bottom: 0;
}

/* ================================================================
   CONTENT BUTTONS
   ================================================================ */
.W0yAnyO {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.W0yAnyO .JttJqPx {
    padding: 0.7rem 1.6rem;
    background: var(--content-btn-register-bg, var(--btn-register-bg));
    color: var(--content-btn-register-text, var(--btn-register-text));
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.W0yAnyO .eOWM0gR {
    background: var(--content-btn-login-bg, var(--btn-login-bg));
    color: var(--content-btn-login-text, var(--btn-login-text));
    border: 2px solid var(--content-btn-login-border, var(--btn-login-border));
}

.W0yAnyO .eOWM0gR:hover {
    background: var(--content-btn-login-hover-bg, var(--btn-login-hover-bg));
    color: var(--content-btn-login-hover-text, var(--btn-login-hover-text));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

.W0yAnyO .HSI5gLr:hover {
    background: var(--content-btn-register-hover-bg, var(--btn-register-hover-bg));
    color: var(--content-btn-register-hover-text, var(--btn-register-hover-text));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

/* ================================================================
   TOC SHORTCODE
   ================================================================ */
.Kfa2NP1 {
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
}

.LxGKqdc {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: var(--surface-muted);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s;
}

.LxGKqdc:hover {
    background: var(--surface);
}

.Kfa2NP1.Knu74f5 .LxGKqdc svg {
    transform: rotate(180deg);
}

.ex0phRM { flex: 1; }

.LxGKqdc svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.hqf6jqV {
    padding: 0.75rem 1.25rem 1rem;
    display: none;
}

.Kfa2NP1.Knu74f5 .hqf6jqV {
    display: block;
}

.hqf6jqV ol {
    list-style-type: decimal;
    padding: 0 0 0 1.5em;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.hqf6jqV li {
    margin-bottom: 0;
    padding-left: 0;
    font-size: 0.95rem;
}

.hqf6jqV li::marker {
    color: var(--text-muted);
}

.hqf6jqV li.VLT29NX {
    padding-left: 1.25rem;
}

.hqf6jqV a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.3;
}

.hqf6jqV a:hover {
    color: var(--primary);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.RCEWrZW {
    margin: 2rem 0;
}

.I2jJuQw {
    margin-bottom: 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
}

.I2jJuQw:last-child {
    margin-bottom: 0;
}

.hYlUOaQ {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--surface);
    border: none;
    font-family: inherit;
    line-height: inherit;
    text-align: left;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s, color 0.2s;
}

.hYlUOaQ:hover {
    background: var(--surface-muted);
}

.hYlUOaQ.active {
    background: rgba(var(--primary-rgb), 0.06);
}

.hYlUOaQ .aHegUuW,
.hYlUOaQ h3,
.hYlUOaQ span {
    flex: 1;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-align: left;
    min-width: 0;
}

.ODATrbB {
    width: 1.2rem;
    height: 1.2rem;
    min-width: 1.2rem;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.25s;
}

.hYlUOaQ.active .ODATrbB {
    transform: rotate(180deg);
    color: var(--primary-hover);
}

.StDco19 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg);
}

.StDco19.active {
    max-height: 1000px;
    border-top: 1px solid var(--border);
}

.ZJHTips {
    padding: 1rem 1.2rem 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.ZJHTips p, .StDco19 p {
    margin: 0 0 0.75em;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.ZJHTips p:last-child, .StDco19 p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   AUTHOR BLOCK — compact / miniature
   ================================================================ */
.h1CEqGb {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.olyVzrL img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.E8pXqyv {
    flex: 1;
    min-width: 0;
}

.lzLCBOA {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.15rem;
}

.lzLCBOA a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.lzLCBOA a:hover {
    color: var(--primary);
}

.DXYKymo {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.DXYKymo p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* ================================================================
   TABLES
   ================================================================ */
.CFVZr62, .Ja0dZg7 {
    overflow-x: auto;
    margin: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

table thead tr {
    background: var(--table-head-bg);
    color: var(--table-head-text);
}

table thead td, table thead th {
    padding: 0.65rem 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    color: var(--table-head-text) !important;
}

table tbody tr {
    background: var(--bg);
}

table tbody tr:nth-child(even) {
    background: var(--table-row-even-bg);
}

table tbody tr:hover {
    background: var(--table-row-hover);
}

table td, table th {
    padding: 0.55rem 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

table tr:last-child td, table tr:last-child th {
    border-bottom: none;
}

table td p, table th p {
    margin: 0 0 0.25rem;
}

table td p:last-child, table th p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.algtRh0 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.cM8YPHq {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}

.cM8YPHq:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.UJsjdFc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 0.4rem;
}

.KM3fjav {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.AuJEC9X {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.GQ8TRjd {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.92rem;
}

/* ================================================================
   404 PAGE
   ================================================================ */
.efTI5DS {
    text-align: center;
    padding: 4rem 1rem;
}

.iMgTbSz {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 0 0 0.5rem;
}

.SFdoLvj {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.NAEOpaI {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ================================================================
   BONUS BAR (replaces cookie notice)
   ================================================================ */
.JmEFYUX {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, calc(100% + 60px));
    width: 100%;
    max-width: var(--container-max);
    z-index: 9999;
    background: var(--bonus-bar-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.JmEFYUX.pPLulHN {
    transform: translate(-50%, 0);
}

.SqT6Td2 {
    flex-shrink: 0;
}

.SqT6Td2 img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.eird2Dw {
    flex: 1;
    min-width: 0;
}

.qD9kANK {
    color: var(--bonus-bar-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.VXUlTwe {
    color: var(--bonus-bar-text);
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.3;
    margin-top: 2px;
}

.aAeuqKs {
    flex-shrink: 0;
    padding: 0.6rem 1.5rem;
    background: var(--bonus-bar-btn-bg);
    color: var(--bonus-bar-btn-text);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.aAeuqKs:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ================================================================
   POPUP (bonus popup with timer)
   ================================================================ */
.v1gEfzd {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.v1gEfzd.pPLulHN {
    opacity: 1;
    visibility: visible;
}

.bjvHNjQ {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10002;
    background: var(--popup-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 2.5rem 1.75rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.bjvHNjQ.pPLulHN {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.fFxVGka {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.06);
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    font-size: 1.1rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s, border-color 0.2s;
}

.fFxVGka:hover {
    background: rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.2);
    color: #64748b;
}

.YYhUJUo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--popup-title-color);
    margin: 0 0 0.3rem;
    line-height: 1.25;
}

.ClEhuWk {
    font-size: 1.05rem;
    color: var(--popup-subtitle-color);
    margin: 0 0 1.5rem;
    line-height: 1.4;
}

.NTAW69K {
    background: var(--popup-card-bg);
    border: 3px solid var(--popup-card-border);
    border-radius: 16px;
    padding: 0 1.25rem 1.25rem;
    overflow: hidden;
}

.NzWEips {
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 100%);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    margin: 0 -1.25rem 1rem;
}

.NzWEips img {
    max-width: 200px;
    max-height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.RZtB03j {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--popup-bonus-name-color);
    margin: 0 0 0.35rem;
}

.ibAM55T {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--popup-bonus-amount-color);
    margin: 0 0 1.15rem;
}

.toKYGLO {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--popup-btn-bg);
    color: var(--popup-btn-text);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: filter 0.2s, transform 0.15s;
}

.toKYGLO:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.JOBayec {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--scroll-top-bg, var(--primary));
    color: var(--scroll-top-color, var(--on-primary));
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s, color 0.2s;
    z-index: 999;
}

.JOBayec.pPLulHN {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.JOBayec:hover {
    background: var(--scroll-top-hover-bg, var(--primary-hover));
}

/* ================================================================
   FOOTER
   ================================================================ */
.lymsiiw {
    background: var(--footer-bg);
    padding: 2.5rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
    color: var(--footer-text);
}

.MrzdrvN {
    max-width: var(--container-max);
    margin: 0 auto;
}

.ZXv0hqy {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 1.75rem;
}

.rklqiOD {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
}

.mD4b1Au {
    margin: 0;
}

.mD4b1Au img {
    max-height: 40px;
    width: auto;
    display: block;
}

.Xn8sRYk {
    flex: 1 1 0%;
    min-width: 0;
}

.OGfDOI5 {
    flex: 0 0 auto;
}

.EbphM7H {
    font-weight: 600;
    font-size: 1rem;
    color: var(--footer-heading-color);
    margin-bottom: 0.75rem;
}

.lVuEA5p {
    color: var(--footer-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.M5veD5g {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.M5veD5g a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.M5veD5g a:hover {
    color: var(--footer-link-hover);
}

.R3r1yCk {
    border-top: 1px solid var(--footer-border);
    padding-top: 1.25rem;
    text-align: center;
}

.yTIEUzM {
    max-width: 60ch;
    margin: 0 auto;
}

.bexaNWj {
    color: var(--footer-copy-color);
    font-size: 0.85rem;
    margin: 0 0 0.35rem;
}

.UBYsnTn {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
}
.UBYsnTn li a {
    color: var(--footer-link-color);
    font-size: 0.85rem;
    text-decoration: none;
}
.UBYsnTn li a:hover { color: var(--footer-link-hover); }

.fmxJCRt {
    color: var(--footer-copy-color);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
}

/* ================================================================
   RESPONSIVE — tablets (max-width: 1055px)
   ================================================================ */
@media (max-width: 1055px) {
    .nJIt2RD {
        padding: 0.7rem 1rem;
    }

    .zewBEze,
    .lRtRMZ9 {
        display: none;
    }

    .GwL6AXA {
        display: block;
    }

    .UTXNOEV {
        display: flex;
    }

    .Gvec093 {
        display: flex;
    }

    .TtIZYLV {
        padding: 2rem 0;
    }

    .EC7kK2M {
        padding: 0 1rem;
    }

    .aI0TFPK h1 { font-size: 1.8rem; }
    .aI0TFPK h2 { font-size: 1.4rem; }
    .aI0TFPK h3 { font-size: 1.15rem; }
    .aI0TFPK h4 { font-size: 1.05rem; }
    .aI0TFPK p,
    .aI0TFPK ul li,
    .aI0TFPK ol li { font-size: 1rem; }

    .D1RLV2F,
    .WewCMHx {
        float: none;
        max-width: 100%;
        margin: 1rem auto;
        display: block;
    }

    .CIzsz6u,
    .ZbbSns0,
    .HLSVcRb {
        grid-template-columns: 1fr;
    }

    .D1RLV2F img,
    .WewCMHx img {
        margin: 0 auto;
    }

    .W0yAnyO {
        gap: 0.8rem;
    }

    .hqf6jqV ol {
        grid-template-columns: 1fr;
    }

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

    .JmEFYUX {
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: translateY(calc(100% + 30px));
        border-radius: var(--radius-lg);
        padding: 0.85rem 1rem;
    }

    .JmEFYUX.pPLulHN {
        transform: translateY(0);
    }

    .JOBayec {
        bottom: 90px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

}

@media (max-width: 768px) {
    .ZXv0hqy {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ================================================================
   RESPONSIVE — small phones (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
    .nJIt2RD {
        padding: 0.6rem 0.75rem;
    }

    .VmbzOGi {
        height: 30px;
    }

    .UTXNOEV .v03ayfj {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .Gvec093 {
        padding: 0.6rem 1rem 1rem;
    }

    .TtIZYLV {
        padding: 1.5rem 0;
    }

    .EC7kK2M {
        padding: 0 0.75rem;
    }

    .aI0TFPK h1 { font-size: 1.4rem; }
    .aI0TFPK h2 { font-size: 1.2rem; }

    .h1CEqGb {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .JmEFYUX {
        flex-wrap: wrap;
        padding: 0.75rem;
        gap: 0.6rem;
    }

    .qD9kANK {
        font-size: 0.85rem;
    }

    .VXUlTwe {
        font-size: 0.72rem;
    }

    .bjvHNjQ {
        width: 95%;
        padding: 2rem 1.25rem 1.5rem;
    }

    .YYhUJUo {
        font-size: 1.35rem;
    }

    .ibAM55T {
        font-size: 1.2rem;
    }

    .M5veD5g {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem 1.25rem;
    }

    table {
        font-size: 0.85rem;
        min-width: 480px;
    }
}

/* ===== Exit-intent popup ===== */
.AJtBge7 {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.AJtBge7.ontfHMV {
    display: flex;
    animation: exitPopupFade 0.28s ease-out;
}

.xfqOVsU {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 28, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.EWOcl3L {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    animation: exitPopupIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.uZHw35f {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: #4a5568;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    z-index: 2;
}

.uZHw35f:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
    transform: rotate(90deg);
}

.uZHw35f:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.vZaQWFR {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a5a00;
    background: linear-gradient(135deg, #ffe27a 0%, #ffc042 100%);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255, 192, 66, 0.4);
}

.DQReHMW {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9680b;
    animation: exitPopupPulse 1.4s ease-in-out infinite;
}

.ZzprX5X {
    margin-bottom: 1.1rem;
}

.NI88H3n {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    margin-bottom: 0.9rem;
}

.yoBVets {
    max-width: 180px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.l9JRjQp {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.eJLybJB {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.Q4t9qVm {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 55%, #3c82d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.fl5MdtQ {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.ruKUl3z {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.bqwsTnf {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, rgba(1, 47, 111, 0.05) 0%, rgba(1, 47, 111, 0.02) 100%);
    border: 1px dashed rgba(1, 47, 111, 0.28);
    border-radius: var(--radius-md);
}

.uKulYqZ {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
}

.cTqY04Q {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.niQQFjA {
    font-family: ui-monospace, 'Cascadia Code', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: #ffffff;
    border: 1.5px solid rgba(1, 47, 111, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.9rem;
    min-width: 120px;
    text-align: center;
}

.eEIQAHz {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--primary);
    background: #ffffff;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.eEIQAHz:hover:not(:disabled) {
    background: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 3px 10px rgba(1, 47, 111, 0.25);
}

.eEIQAHz:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.eEIQAHz:disabled {
    cursor: default;
    pointer-events: none;
}

.eEIQAHz.FQzS13z {
    background: #0d8050;
    border-color: #0d8050;
    color: #fff;
}

.SpXH9Wy {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    text-align: left;
}

.SpXH9Wy li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.SpXH9Wy li svg {
    flex-shrink: 0;
    color: #0d8050;
}

.tbfsxOq {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--on-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(1, 47, 111, 0.35);
    transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.tbfsxOq:hover {
    color: var(--on-primary);
    text-decoration: none;
    filter: brightness(1.08);
    box-shadow: 0 14px 32px rgba(1, 47, 111, 0.45);
    transform: translateY(-2px);
}

.tbfsxOq:focus-visible {
    outline: 2px solid #ffc042;
    outline-offset: 3px;
}

.rTAyjHZ {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    color: var(--text-soft);
    line-height: 1.4;
}

@keyframes exitPopupFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes exitPopupIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes exitPopupPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.35); opacity: 0.65; }
}

body.tXop56w {
    overflow: hidden;
}

@media (max-width: 480px) {
    .EWOcl3L {
        padding: 1.75rem 1.25rem 1.25rem;
        border-radius: 14px;
    }

    .Q4t9qVm { font-size: 2.2rem; }
    .fl5MdtQ   { font-size: 1.1rem; }

    .tbfsxOq {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }

    .niQQFjA {
        font-size: 1rem;
        min-width: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .AJtBge7.ontfHMV,
    .EWOcl3L,
    .DQReHMW {
        animation: none;
    }
    .uZHw35f:hover { transform: none; }
    .tbfsxOq:hover   { transform: none; }
}


/* === Shortcode Styles === */
/* Shortcode: games */
.ZErbgvm{margin:1.5rem 0}.ccmy0em{font-size:1.4rem;font-weight:700;margin-bottom:1rem;color:var(--games-title-color,var(--text))}.FwBdl24{position:relative}.TFRZgNW{display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;padding:6px 0}.TFRZgNW::-webkit-scrollbar{display:none}.VDS3tGL{position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:36px;height:36px;border-radius:50%;background:var(--games-arrow-bg,var(--primary));color:var(--games-arrow-color,var(--on-primary));border:none;font-size:0;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s,transform .15s,opacity .2s;box-shadow:0 2px 10px rgba(0,0,0,.2);opacity:.85}.VDS3tGL:hover{opacity:1;transform:translateY(-50%) scale(1.1)}.hZG9POp{left:8px}.DeZCvh5{right:8px}.hZG9POp::after,.DeZCvh5::after{content:'';display:block;width:10px;height:10px;border-top:2.5px solid currentColor;border-right:2.5px solid currentColor}.hZG9POp::after{transform:rotate(-135deg);margin-left:2px}.DeZCvh5::after{transform:rotate(45deg);margin-right:2px}.PJmxRBh{flex:0 0 150px;border-radius:var(--games-card-radius,14px);overflow:hidden;text-decoration:none}.PJmxRBh img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}@media(max-width:480px){.PJmxRBh{flex:0 0 calc(50% - 6px)}.VDS3tGL{width:30px;height:30px}.hZG9POp{left:4px}.DeZCvh5{right:4px}}

/* Shortcode: payments */
.a5IlO1R{margin:1.5rem 0}.QbDUU8Y{font-size:1.3rem;font-weight:700;margin-bottom:1rem;color:var(--payments-title-color,var(--text))}.rwWaDL6{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;max-width:800px;margin:0 auto}.had0cut{display:flex;flex-direction:column;align-items:center;gap:6px;padding:12px 8px;background:var(--payments-card-bg,var(--surface-muted));border-radius:var(--payments-card-radius,var(--radius-md));text-align:center;transition:transform .4s ease,box-shadow .4s ease;box-shadow:0 1px 3px rgba(0,0,0,.04);box-sizing:border-box}.had0cut:hover{transform:translateY(-3px);box-shadow:0 6px 16px rgba(0,0,0,.07)}.had0cut img{width:100px;height:60px;object-fit:contain}.had0cut span{font-size:.85rem;font-weight:500;color:var(--payments-name-color,var(--text-muted))}@media(max-width:768px){.rwWaDL6{grid-template-columns:repeat(3,1fr)}}@media(max-width:480px){.rwWaDL6{grid-template-columns:repeat(2,1fr);gap:8px}.had0cut{padding:10px 4px}.had0cut img{width:70px;height:46px}}

/* Shortcode: gambling_help */
.xosbjDk{margin:1.5rem 0}.MI8dYOy{font-size:1.3rem;font-weight:700;margin-bottom:1.2rem;color:var(--help-title-color,var(--text))}.ELU1CiL{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:900px;margin:0 auto}.jo5ITx0{display:flex;flex-direction:column;align-items:center;gap:10px;padding:20px 14px;background:var(--help-card-bg,var(--bg,#fff));border:1px solid var(--help-card-border,var(--border));border-radius:var(--help-card-radius,var(--radius-lg));text-align:center;transition:transform .4s ease,box-shadow .4s ease}.jo5ITx0:hover{transform:translateY(-3px);box-shadow:0 6px 18px rgba(0,0,0,.08)}.jo5ITx0 img{width:80px;height:80px;object-fit:contain}.rOE0gY5{font-size:.9rem;font-weight:700;color:var(--text)}.LFhrc1m{color:#f59e0b;font-size:.8rem;letter-spacing:2px}.LngudnG{display:inline-block;padding:9px 22px;background:var(--help-btn-bg,var(--primary));color:var(--help-btn-text,#fff)!important;border-radius:var(--radius-sm);font-size:.85rem;font-weight:600;text-decoration:none;transition:background .4s ease,transform .4s ease}.LngudnG:hover{background:var(--help-btn-hover,var(--primary-hover));color:var(--help-btn-text,#fff)!important;transform:scale(1.03);text-decoration:none}@media(max-width:768px){.ELU1CiL{grid-template-columns:repeat(2,1fr);gap:12px}}@media(max-width:480px){.ELU1CiL{grid-template-columns:repeat(2,1fr);gap:10px}.jo5ITx0{padding:14px 10px}.jo5ITx0 img{width:50px;height:50px}}