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

:root {
    --primary: #4ade80;
    --primary-hover: #7dd3fc;
    --primary-rgb: 74, 222, 128;
    --accent: #4ade80;
    --accent-hover: #86efac;
    --accent-rgb: 74, 222, 128;
    --on-primary: #0f172a;

    --bg: #009e7e;
    --surface: #009e7e;
    --surface-muted: #009e7e;
    --footer-bg: #0f172a;
    --footer-text: #cbd5e1;
    --footer-text-muted: #94a3b8;
    --footer-heading-color: #f1f5f9;
    --footer-link-color: #94a3b8;
    --footer-link-hover: #ffffff;
    --footer-border: rgba(255,255,255,0.08);
    --footer-copy-color: #64748b;

    --text: #ffffff;
    --text-muted: #b8c5d6;
    --text-soft: #94a3b8;

    --border: #334155;

    --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: #ffdd00;
    --blockquote-bg: #1e293b;
    --blockquote-text: #e2e8f0;

    --btn-login-bg: transparent;
    --btn-login-text: #ffffff;
    --btn-login-border: #ffdd00;
    --btn-login-hover-bg: #ffdd00;
    --btn-login-hover-text: #ffffff;
    --btn-register-bg: #ffdd00;
    --btn-register-text: #0f172a;
    --btn-register-hover-bg: #ffdd00;
    --btn-register-hover-text: #0f172a;

    --nav-link-color: rgba(2, 2, 3, 1);
    --nav-link-hover: #ffdd00;
    --nav-link-hover-bg: rgba(37, 99, 235, 0.08);

    --breadcrumb-link-color: #64748b;
    --breadcrumb-link-hover: #2563eb;
    --breadcrumb-current-color: #1e293b;
    --breadcrumb-sep-color: #94a3b8;

    --scroll-top-bg: #2563eb;
    --scroll-top-color: #ffffff;
    --scroll-top-hover-bg: #3b82f6;

    --content-link-color: #2563eb;
    --content-link-hover: #3b82f6;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #ffdd00;
    --content-btn-login-border: #ffdd00;
    --content-btn-login-hover-bg: #ffdd00;
    --content-btn-login-hover-text: #ffffff;
    --content-btn-register-bg: #rgba(46, 224, 67, 1);
    --content-btn-register-text: #ffffff;
    --content-btn-register-hover-bg: #ffdd00;
    --content-btn-register-hover-text: #ffffff;

    --table-head-bg: #ffdd00;
    --table-head-text: #0f172a;
    --table-row-even-bg: #0f172a;
    --table-row-hover: rgba(74, 222, 128, 0.05);

    --bonus-bar-bg: #1e293b;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #ffdd00;
    --bonus-bar-btn-text: #0f172a;

    --popup-bg: #1e293b;
    --popup-title-color: #ffffff;
    --popup-subtitle-color: #b8c5d6;
    --popup-btn-bg: #ffdd00;
    --popup-btn-text: #0f172a;
    --popup-card-bg: #0f172a;
    --popup-card-border: #ffdd00;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #fbbf24;

    --header-bg: ##009e7e;
    --header-border: ##009e7e;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.25);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #ffffff;
    --games-card-bg: #0f172a;
    --games-card-radius: 14;
    --games-arrow-bg: #ffdd00;
    --games-arrow-color: #0f172a;

    --payments-title-color: #ffffff;
    --payments-card-bg: #0f172a;
    --payments-card-radius: 10px;
    --payments-name-color: #b8c5d6;

    --help-title-color: #ffffff;
    --help-card-bg: #1e293b;
    --help-card-border: #334155;
    --help-card-radius: 14;
    --help-btn-bg: #ffdd00;
    --help-btn-text: #0f172a;
    --help-btn-hover: #86efac;
}

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

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

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

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

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

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

.hLGRBMW a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.sJlZDDe:hover .qf9zTIf {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.W1gf676 .tBLw9Hr:hover {
    transform: translateY(-1px);
}

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

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

body.JiiT2zJ {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.b3CZ1ve .f0RMcoF {
    display: flex;
    flex-direction: column;
}

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

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

.b3CZ1ve .QzxXWGw {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.svODxik + .lM2Rfxb {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.IuKMtBD a:not(.EBW73y8):not(.F24sADl):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.q0Ag9Rj {
    text-align: left;
}

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

.k7b0F77 {
    text-align: right;
}

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

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

.IXG7xRF { grid-template-columns: repeat(2, 1fr); }
.MDmph0M { grid-template-columns: repeat(3, 1fr); }
.t531BmD { grid-template-columns: repeat(4, 1fr); }

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

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

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

.obrCSKK .LMHmfyU {
    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));
}

.obrCSKK .LMHmfyU: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);
}

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

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

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

.pmnXlLT.qHuj1UP .YtArQ35 svg {
    transform: rotate(180deg);
}

.nbfLaZc { flex: 1; }

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

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

.pmnXlLT.qHuj1UP .RoSnxVX {
    display: block;
}

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

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

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

.RoSnxVX li.ifQfyct {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.NR01SWF p:last-child, .EVOHg47 p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pqi8FJK.Ia1XNGU {
    transform: translate(-50%, 0);
}

.dGnMc5A {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.Zyjc3zm.Ia1XNGU {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.MwndOcE.Ia1XNGU {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.rzqcnn7 {
    margin: 0;
}

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

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

.P4PRQGL {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .hLGRBMW,
    .z3rySch {
        display: none;
    }

    .Wa9cMbu {
        display: block;
    }

    .W1gf676 {
        display: flex;
    }

    .b3CZ1ve {
        display: flex;
    }

    .lM2Rfxb {
        padding: 2rem 0;
    }

    .ucyssks {
        padding: 0 1rem;
    }

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

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

    .IXG7xRF,
    .MDmph0M,
    .t531BmD {
        grid-template-columns: 1fr;
    }

    .mWcNHj1 img,
    .HseIRlP img {
        margin: 0 auto;
    }

    .obrCSKK {
        gap: 0.8rem;
    }

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

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

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

    .pqi8FJK.Ia1XNGU {
        transform: translateY(0);
    }

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

}

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

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

    .W4pfTYF {
        height: 30px;
    }

    .W1gf676 .tBLw9Hr {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .lM2Rfxb {
        padding: 1.5rem 0;
    }

    .ucyssks {
        padding: 0 0.75rem;
    }

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

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

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

    .VLvmzAi {
        font-size: 0.85rem;
    }

    .sC3LWcD {
        font-size: 0.72rem;
    }

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

    .fcNjDkJ {
        font-size: 1.35rem;
    }

    .zYHrvo3 {
        font-size: 1.2rem;
    }

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

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


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

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

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