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

:root {
    --primary: #0797D3;
    --primary-hover: #087DB5;
    --primary-rgb: 7, 151, 211;
    --accent: #59C92F;
    --accent-hover: #43A925;
    --accent-rgb: 89, 201, 47;
    --on-primary: #1eff00;

    --bg: #0D83AA;
    --surface: #12779A;
    --surface-muted: #075F84;
    --footer-bg: #064B6A;
    --footer-text: #E6F7FC;
    --footer-text-muted: #B8DDE8;
    --footer-heading-color: #F5E51B;
    --footer-link-color: #D5EDF5;
    --footer-link-hover: #B7EA24;
    --footer-border: rgba(255,255,255,0.08);
    --footer-copy-color: #8FC4D3;

    --text: #F5E51B;
    --text-muted: #D5EDF5;
    --text-soft: #A9D2DF;

    --border: #3AA8C7;

    --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: #B7EA24;
    --blockquote-bg: #2A93B7;
    --blockquote-text: #F4FBFF;

    --btn-login-bg: transparent;
    --btn-login-text: #B7EA24;
    --btn-login-border: #B7EA24;
    --btn-login-hover-bg: #B7EA24;
    --btn-login-hover-text: #064F70;
    --btn-register-bg: #63D51F;
    --btn-register-text: #073F59;
    --btn-register-hover-bg: #7BE42B;
    --btn-register-hover-text: #073F59;

    --nav-link-color: #EAFBFF;
    --nav-link-hover: #F5E51B;
    --nav-link-hover-bg: rgba(37, 99, 235, 0.08);

    --breadcrumb-link-color: #D5EDF5;
    --breadcrumb-link-hover: #B7EA24;
    --breadcrumb-current-color: #FFFFFF;
    --breadcrumb-sep-color: #7FC4D9;

    --scroll-top-bg: #63D51F;
    --scroll-top-color: #073F59;
    --scroll-top-hover-bg: #7BE42B;

    --content-link-color: #F5E51B;
    --content-link-hover: #FFF36A;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #B7EA24;
    --content-btn-login-border: #B7EA24;
    --content-btn-login-hover-bg: #B7EA24;
    --content-btn-login-hover-text: #064F70;
    --content-btn-register-bg: #63D51F;
    --content-btn-register-text: #073F59;
    --content-btn-register-hover-bg: #7BE42B;
    --content-btn-register-hover-text: #073F59;

    --table-head-bg: #63D51F;
    --table-head-text: #073F59;
    --table-row-even-bg: #0A6F95;
    --table-row-hover: rgba(7, 151, 211, 0.05);

    --bonus-bar-bg: #1e40af;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #16a34a;
    --bonus-bar-btn-text: #ffffff;

    --popup-bg: #ffffff;
    --popup-title-color: #1e293b;
    --popup-subtitle-color: #64748b;
    --popup-btn-bg: #16a34a;
    --popup-btn-text: #ffffff;
    --popup-card-bg: #0c1a4a;
    --popup-card-border: #2563eb;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #facc15;

    --header-bg: #075F84;
    --header-border: #1492BC;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #F5E51B;
    --games-card-bg: #086B91;
    --games-card-radius: 14;
    --games-arrow-bg: #63D51F;
    --games-arrow-color: #073F59;

    --payments-title-color: #F4FBFF;
    --payments-card-bg: #11799D;
    --payments-card-radius: 10px;
    --payments-name-color: #D7F0F7;

    --help-title-color: #F4FBFF;
    --help-card-bg: #086B91;
    --help-card-border: #39A9C9;
    --help-card-radius: 14;
    --help-btn-bg: #63D51F;
    --help-btn-text: #ffffff;
    --help-btn-hover: #7BE42B;
}

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

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

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

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

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

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

.lEiuKUD a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.UYBRiOK:hover .MER5pme {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.yiqPggc .vX6HQnX:hover {
    transform: translateY(-1px);
}

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

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

body.ov8MWRl {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.Ek4sKdV .BsAEUAO {
    display: flex;
    flex-direction: column;
}

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

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

.Ek4sKdV .aarUlvd {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.jgYJz1e + .Zma1cPa {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.PI88XzG a:not(.OVisFiI):not(.ZzABl15):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.STWNyaW {
    text-align: left;
}

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

.Rmmz9bw {
    text-align: right;
}

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

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

.cGkXLMh { grid-template-columns: repeat(2, 1fr); }
.S1JyF4h { grid-template-columns: repeat(3, 1fr); }
.XX3Tv0x { grid-template-columns: repeat(4, 1fr); }

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

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

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

.xqEQoez .bg5tyzQ {
    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));
}

.xqEQoez .bg5tyzQ: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);
}

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

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

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

.pddeqqe.u7OnNwk .tX87ZKX svg {
    transform: rotate(180deg);
}

.ysAqSsU { flex: 1; }

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

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

.pddeqqe.u7OnNwk .bfVdwMv {
    display: block;
}

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

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

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

.bfVdwMv li.MUAdgyc {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.kJJz7ES p:last-child, .RtDa7yp p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.JorKHcY.CTSp8MR {
    transform: translate(-50%, 0);
}

.TBU3EgJ {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.sGPImHE.CTSp8MR {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pmBh8Bw.CTSp8MR {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.D7k8nAt {
    margin: 0;
}

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

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

.UD8UOOo {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .lEiuKUD,
    .D5A9Pqf {
        display: none;
    }

    .bhVFJrA {
        display: block;
    }

    .yiqPggc {
        display: flex;
    }

    .Ek4sKdV {
        display: flex;
    }

    .Zma1cPa {
        padding: 2rem 0;
    }

    .ppnHd5v {
        padding: 0 1rem;
    }

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

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

    .cGkXLMh,
    .S1JyF4h,
    .XX3Tv0x {
        grid-template-columns: 1fr;
    }

    .tkOov8z img,
    .wqkmcOl img {
        margin: 0 auto;
    }

    .xqEQoez {
        gap: 0.8rem;
    }

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

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

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

    .JorKHcY.CTSp8MR {
        transform: translateY(0);
    }

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

}

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

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

    .s6wusde {
        height: 30px;
    }

    .yiqPggc .vX6HQnX {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .Zma1cPa {
        padding: 1.5rem 0;
    }

    .ppnHd5v {
        padding: 0 0.75rem;
    }

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

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

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

    .YrcpQ0G {
        font-size: 0.85rem;
    }

    .KwIUgCA {
        font-size: 0.72rem;
    }

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

    .aKwRn6e {
        font-size: 1.35rem;
    }

    .VZic3Lx {
        font-size: 1.2rem;
    }

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

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


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

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

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