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

:root {
    --primary: #F59B32;
    --primary-hover: #DB7F20;
    --primary-rgb: 245, 155, 50;
    --accent: #F3C34F;
    --accent-hover: #D6A637;
    --accent-rgb: 243, 195, 79;
    --on-primary: #17120B;

    --bg: #090A10;
    --surface: #14151E;
    --surface-muted: #1D1E29;
    --footer-bg: #06070C;
    --footer-text: #D8D6D2;
    --footer-text-muted: #918E89;
    --footer-heading-color: #FFFFFF;
    --footer-link-color: #BBB8B2;
    --footer-link-hover: #F59B32;
    --footer-border: rgba(245,155,50,0.15);
    --footer-copy-color: #706D68;

    --text: #F4F3F1;
    --text-muted: #B6B3AE;
    --text-soft: #817E79;

    --border: #302D31;

    --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: #F59B32;
    --blockquote-bg: #211D19;
    --blockquote-text: #E9E4DC;

    --btn-login-bg: transparent;
    --btn-login-text: #E7E4DF;
    --btn-login-border: #5D5960;
    --btn-login-hover-bg: #24242D;
    --btn-login-hover-text: #FFFFFF;
    --btn-register-bg: #F59B32;
    --btn-register-text: #17120B;
    --btn-register-hover-bg: #DB7F20;
    --btn-register-hover-text: #17120B;

    --nav-link-color: #E4E2DE;
    --nav-link-hover: #F59B32;
    --nav-link-hover-bg: rgba(245,155,50,0.09);

    --breadcrumb-link-color: #9B9892;
    --breadcrumb-link-hover: #F59B32;
    --breadcrumb-current-color: #F4F3F1;
    --breadcrumb-sep-color: #69666B;

    --scroll-top-bg: #F59B32;
    --scroll-top-color: #17120B;
    --scroll-top-hover-bg: #DB7F20;

    --content-link-color: #F4B457;
    --content-link-hover: #F3C34F;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #E7E4DF;
    --content-btn-login-border: #5D5960;
    --content-btn-login-hover-bg: #24242D;
    --content-btn-login-hover-text: #FFFFFF;
    --content-btn-register-bg: #F59B32;
    --content-btn-register-text: #17120B;
    --content-btn-register-hover-bg: #DB7F20;
    --content-btn-register-hover-text: #17120B;

    --table-head-bg: #35281B;
    --table-head-text: #FFD276;
    --table-row-even-bg: #1D1E29;
    --table-row-hover: rgba(245, 155, 50, 0.05);

    --bonus-bar-bg: #251B13;
    --bonus-bar-text: #FFFFFF;
    --bonus-bar-btn-bg: #F59B32;
    --bonus-bar-btn-text: #17120B;

    --popup-bg: #101118;
    --popup-title-color: #FFFFFF;
    --popup-subtitle-color: #B6B3AE;
    --popup-btn-bg: #F59B32;
    --popup-btn-text: #17120B;
    --popup-card-bg: #1B1A20;
    --popup-card-border: #66451F;
    --popup-bonus-name-color: #FFFFFF;
    --popup-bonus-amount-color: #F3C34F;

    --header-bg: #08090E;
    --header-border: #272730;
    --header-shadow: 0 2px 14px rgba(0,0,0,0.42);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #FFFFFF;
    --games-card-bg: #171820;
    --games-card-radius: 14;
    --games-arrow-bg: #F59B32;
    --games-arrow-color: #17120B;

    --payments-title-color: #FFFFFF;
    --payments-card-bg: #171820;
    --payments-card-radius: 10px;
    --payments-name-color: #B6B3AE;

    --help-title-color: #FFFFFF;
    --help-card-bg: #171820;
    --help-card-border: #302D31;
    --help-card-radius: 14;
    --help-btn-bg: #F59B32;
    --help-btn-text: #17120B;
    --help-btn-hover: #DB7F20;
}

*, *::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
   ================================================================ */
.Qj6ukmr {
    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;
}

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

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

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

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

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

.Y7glbto a {
    text-decoration: none;
}

.iR5Dfxx {
    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;
}

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

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

.qjFcp0V > a,
.qjFcp0V > 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;
}

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

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

.iDn435O {
    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;
}

.qjFcp0V:hover .iDn435O {
    display: block;
}

.iDn435O 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;
}

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

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

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

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

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

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

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

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

.i7MU3cF .QMD91EW {
    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;
}

.i7MU3cF .QMD91EW:hover {
    transform: translateY(-1px);
}

/* Mobile nav overlay (backdrop) */
.XsLtH0R {
    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;
}

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

body.AHQeQ5o {
    overflow: hidden;
}

/* Mobile navigation panel */
.j2vX64c {
    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;
}

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

.YXH3odg {
    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;
}
.YXH3odg:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--text);
}

.j2vX64c > a:not(.tUeEHAY) {
    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;
}

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

/* Mobile dropdown */
.j2vX64c .xMoWOoM {
    display: flex;
    flex-direction: column;
}

.j2vX64c .YP3o4yy {
    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;
}

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

.j2vX64c .F7IJ7Ti {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

/* ================================================================
   BUTTONS
   ================================================================ */
.tUeEHAY, a.tUeEHAY {
    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;
}

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

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

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

.hxACuSi: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
   ================================================================ */
.kxbhohL {
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 0;
}

.kxbhohL + .hJ2raFa {
    padding-top: 1rem;
}

.aeaKFne {
    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;
}

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

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

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

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

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

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

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

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

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

.X1MI3RW 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);
}

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

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

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

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

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

.X1MI3RW a:not(.tUeEHAY):not(.Y48DJVg):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

.X1MI3RW 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;
}

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

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

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

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

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

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

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

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

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

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

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

.H6johHl {
    text-align: left;
}

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

.ftAbLcs {
    text-align: right;
}

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

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

.ork6ci2 { grid-template-columns: repeat(2, 1fr); }
.lpqLmPs { grid-template-columns: repeat(3, 1fr); }
.ljVR8hG { grid-template-columns: repeat(4, 1fr); }

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

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

.f9qb56M .tUeEHAY {
    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;
}

.f9qb56M .eikzn8t {
    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));
}

.f9qb56M .eikzn8t: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);
}

.f9qb56M .hxACuSi: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
   ================================================================ */
.zoiJHi2 {
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
}

.A8tseei {
    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;
}

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

.zoiJHi2.pvLpucv .A8tseei svg {
    transform: rotate(180deg);
}

.KCmCTUL { flex: 1; }

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

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

.zoiJHi2.pvLpucv .utSOOOk {
    display: block;
}

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

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

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

.utSOOOk li.KOAmyGJ {
    padding-left: 1.25rem;
}

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

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

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

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

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

.OGso71o {
    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;
}

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

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

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

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

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

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

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

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

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

.s1X8WRm p:last-child, .nzkKnKJ p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   AUTHOR BLOCK — compact / miniature
   ================================================================ */
.t7ldc9m {
    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);
}

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

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

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

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

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

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

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

/* ================================================================
   TABLES
   ================================================================ */
.CR6nWkr, .PXAur0j {
    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
   ================================================================ */
.GASBESP {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

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

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

.GaC822b {
    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;
}

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

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

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

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

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

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

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

/* ================================================================
   BONUS BAR (replaces cookie notice)
   ================================================================ */
.wdEjWlQ {
    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;
}

.wdEjWlQ.IFvq6qf {
    transform: translate(-50%, 0);
}

.GInoAOK {
    flex-shrink: 0;
}

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

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

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

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

.lrfcL1y {
    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;
}

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

/* ================================================================
   POPUP (bonus popup with timer)
   ================================================================ */
.v71O9vC {
    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;
}

.v71O9vC.IFvq6qf {
    opacity: 1;
    visibility: visible;
}

.zHuiTAv {
    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;
}

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

.IcTVJp3 {
    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;
}

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

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

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

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

.TmqBrvJ {
    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;
}

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

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

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

.lAJvDEz {
    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;
}

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

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.tzy4ble {
    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;
}

.tzy4ble.IFvq6qf {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.YkUAVYv {
    margin: 0;
}

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

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

.rAimkan {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .Y7glbto,
    .JHQ7ddT,
    .lang-switcher {
        display: none;
    }
    .mobile-lang-switcher { display: flex; }

    .VuJMrx3 {
        display: block;
    }

    .i7MU3cF {
        display: flex;
    }

    .j2vX64c {
        display: flex;
    }

    .hJ2raFa {
        padding: 2rem 0;
    }

    .XN5FqIM {
        padding: 0 1rem;
    }

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

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

    .ork6ci2,
    .lpqLmPs,
    .ljVR8hG {
        grid-template-columns: 1fr;
    }

    .uCnEjzT img,
    .R0SFNdI img {
        margin: 0 auto;
    }

    .f9qb56M {
        gap: 0.8rem;
    }

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

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

    .wdEjWlQ {
        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;
    }

    .wdEjWlQ.IFvq6qf {
        transform: translateY(0);
    }

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

}

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

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

    .frInxc6 {
        height: 30px;
    }

    .i7MU3cF .QMD91EW {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .hJ2raFa {
        padding: 1.5rem 0;
    }

    .XN5FqIM {
        padding: 0 0.75rem;
    }

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

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

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

    .yr6WKkS {
        font-size: 0.85rem;
    }

    .TY2cCzN {
        font-size: 0.72rem;
    }

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

    .PYTOal2 {
        font-size: 1.35rem;
    }

    .bxqkY9V {
        font-size: 1.2rem;
    }

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

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

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

.exit-popup.is-open {
    display: flex;
    animation: exitPopupFade 0.28s ease-out;
}

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

.exit-popup__dialog {
    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);
}

.exit-popup__close {
    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;
}

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

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

.exit-popup__ribbon {
    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);
}

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

.exit-popup__header {
    margin-bottom: 1.1rem;
}

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

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

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

.exit-popup__title {
    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;
}

.exit-popup__title-accent {
    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;
}

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

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

.exit-popup__promo {
    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);
}

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

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

.exit-popup__code {
    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;
}

.exit-popup__copy {
    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;
}

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

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

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

.exit-popup__copy.is-copied {
    background: #0d8050;
    border-color: #0d8050;
    color: #fff;
}

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

.exit-popup__perks 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;
}

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

.exit-popup__cta {
    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;
}

.exit-popup__cta: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);
}

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

.exit-popup__disclaimer {
    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.exit-popup-open {
    overflow: hidden;
}

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

    .exit-popup__title-accent { font-size: 2.2rem; }
    .exit-popup__title-main   { font-size: 1.1rem; }

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

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

@media (prefers-reduced-motion: reduce) {
    .exit-popup.is-open,
    .exit-popup__dialog,
    .exit-popup__ribbon-dot {
        animation: none;
    }
    .exit-popup__close:hover { transform: none; }
    .exit-popup__cta:hover   { transform: none; }
}

/* Language switcher */
.lang-switcher-toggle svg {
    display: block;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
}
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lang-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm, 6px);
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.lang-switcher-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.lang-switcher-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 4.5rem;
    background: var(--bg, #fff);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 80;
    overflow: hidden;
}
.lang-switcher.pvLpucv .lang-switcher-dropdown { display: block; }
.lang-switcher.pvLpucv .lang-switcher-arrow { transform: rotate(180deg); }
.lang-switcher-option {
    display: block;
    padding: 0.45rem 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.lang-switcher-option:hover,
.lang-switcher-option.active {
    background: var(--surface-muted, var(--surface));
    color: var(--primary);
}
.mobile-lang-switcher {
    display: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.75rem 0 0.25rem;
}
.lang-switcher-item {
    padding: 0.3rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 6px);
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}
.lang-switcher-item.active {
    border-color: var(--primary);
    color: var(--primary);
}


/* === Shortcode Styles === */
/* Shortcode: games */
.zt4hC2B{margin:1.5rem 0}.JwnQZI7{font-size:1.4rem;font-weight:700;margin-bottom:1rem;color:var(--games-title-color,var(--text))}.NeRK7is{position:relative}.YPKg5Gr{display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;padding:6px 0}.YPKg5Gr::-webkit-scrollbar{display:none}.nHOHCdf{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}.nHOHCdf:hover{opacity:1;transform:translateY(-50%) scale(1.1)}.k22k8yU{left:8px}.wC4kKNF{right:8px}.k22k8yU::after,.wC4kKNF::after{content:'';display:block;width:10px;height:10px;border-top:2.5px solid currentColor;border-right:2.5px solid currentColor}.k22k8yU::after{transform:rotate(-135deg);margin-left:2px}.wC4kKNF::after{transform:rotate(45deg);margin-right:2px}.zEgQW5x{flex:0 0 150px;border-radius:var(--games-card-radius,14px);overflow:hidden;text-decoration:none}.zEgQW5x img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}@media(max-width:480px){.zEgQW5x{flex:0 0 calc(50% - 6px)}.nHOHCdf{width:30px;height:30px}.k22k8yU{left:4px}.wC4kKNF{right:4px}}

/* Shortcode: payments */
.I8i4pke{margin:1.5rem 0}.SeCinfr{font-size:1.3rem;font-weight:700;margin-bottom:1rem;color:var(--payments-title-color,var(--text))}.fnqXepB{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;max-width:800px;margin:0 auto}.DKI8Nyk{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}.DKI8Nyk:hover{transform:translateY(-3px);box-shadow:0 6px 16px rgba(0,0,0,.07)}.DKI8Nyk img{width:100px;height:60px;object-fit:contain}.DKI8Nyk span{font-size:.85rem;font-weight:500;color:var(--payments-name-color,var(--text-muted))}@media(max-width:768px){.fnqXepB{grid-template-columns:repeat(3,1fr)}}@media(max-width:480px){.fnqXepB{grid-template-columns:repeat(2,1fr);gap:8px}.DKI8Nyk{padding:10px 4px}.DKI8Nyk img{width:70px;height:46px}}

/* Shortcode: gambling_help */
.AzQL02v{margin:1.5rem 0}.TjQNWbi{font-size:1.3rem;font-weight:700;margin-bottom:1.2rem;color:var(--help-title-color,var(--text))}.dpOgcRR{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:900px;margin:0 auto}.eoK8zJf{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}.eoK8zJf:hover{transform:translateY(-3px);box-shadow:0 6px 18px rgba(0,0,0,.08)}.eoK8zJf img{width:80px;height:80px;object-fit:contain}.nHuUXaV{font-size:.9rem;font-weight:700;color:var(--text)}.zuz36lj{color:#f59e0b;font-size:.8rem;letter-spacing:2px}.Y48DJVg{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}.Y48DJVg: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){.dpOgcRR{grid-template-columns:repeat(2,1fr);gap:12px}}@media(max-width:480px){.dpOgcRR{grid-template-columns:repeat(2,1fr);gap:10px}.eoK8zJf{padding:14px 10px}.eoK8zJf img{width:50px;height:50px}}