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

:root {
    --primary: #33d46a;
    --primary-hover: #4ade80;
    --primary-rgb: 51, 212, 106;
    --accent: #33d46a;
    --accent-hover: #4ade80;
    --accent-rgb: 51, 212, 106;
    --on-primary: #ffffff;

    --bg: #0F3C4B;
    --surface: #134554;
    --surface-muted: #0d2d38;
    --footer-bg: #0a2630;
    --footer-text: #cbd5e1;
    --footer-text-muted: #9ca3af;
    --footer-heading-color: #f1f5f9;
    --footer-link-color: #9ca3af;
    --footer-link-hover: #4ade80;
    --footer-border: rgba(255,255,255,0.08);
    --footer-copy-color: #64748b;

    --text: #ffffff;
    --text-muted: #94c4b4;
    --text-soft: #7ab0a0;

    --border: #1a4a44;

    --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: #33d46a;
    --blockquote-bg: #134554;
    --blockquote-text: #e2e8f0;

    --btn-login-bg: transparent;
    --btn-login-text: #ffffff;
    --btn-login-border: #ffffff;
    --btn-login-hover-bg: rgba(255,255,255,0.1);
    --btn-login-hover-text: #ffffff;
    --btn-register-bg: #33d46a;
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #4ade80;
    --btn-register-hover-text: #ffffff;

    --nav-link-color: #94c4b4;
    --nav-link-hover: #33d46a;
    --nav-link-hover-bg: rgba(51, 212, 106, 0.08);

    --breadcrumb-link-color: #94c4b4;
    --breadcrumb-link-hover: #33d46a;
    --breadcrumb-current-color: #7ab0a0;
    --breadcrumb-sep-color: #7ab0a0;

    --scroll-top-bg: #33d46a;
    --scroll-top-color: #ffffff;
    --scroll-top-hover-bg: #4ade80;

    --content-link-color: #33d46a;
    --content-link-hover: #4ade80;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #ffffff;
    --content-btn-login-border: #ffffff;
    --content-btn-login-hover-bg: rgba(255,255,255,0.1);
    --content-btn-login-hover-text: #ffffff;
    --content-btn-register-bg: #33d46a;
    --content-btn-register-text: #ffffff;
    --content-btn-register-hover-bg: #4ade80;
    --content-btn-register-hover-text: #ffffff;

    --table-head-bg: #33d46a;
    --table-head-text: #ffffff;
    --table-row-even-bg: #0d2d38;
    --table-row-hover: rgba(51, 212, 106, 0.05);

    --bonus-bar-bg: #0F3C4B;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #33d46a;
    --bonus-bar-btn-text: #ffffff;

    --popup-bg: #134554;
    --popup-title-color: #ffffff;
    --popup-subtitle-color: #94c4b4;
    --popup-btn-bg: #33d46a;
    --popup-btn-text: #ffffff;
    --popup-card-bg: #0a2e3a;
    --popup-card-border: #33d46a;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #fbbf24;

    --header-bg: #0F3C4B;
    --header-border: #1a4a44;
    --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: #0d2d38;
    --games-card-radius: 14;
    --games-arrow-bg: #33d46a;
    --games-arrow-color: #ffffff;

    --payments-title-color: #ffffff;
    --payments-card-bg: #0d2d38;
    --payments-card-radius: 10px;
    --payments-name-color: #94c4b4;

    --help-title-color: #ffffff;
    --help-card-bg: #134554;
    --help-card-border: #1a4a44;
    --help-card-radius: 14;
    --help-btn-bg: #33d46a;
    --help-btn-text: #ffffff;
    --help-btn-hover: #4ade80;
}

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

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

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

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

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

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

.KLWhhGU a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.pYsJjEC:hover .vUha0Hb {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.qSfc5LR .qq90l3x:hover {
    transform: translateY(-1px);
}

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

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

body.JUc4KIf {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.wLB2xZf .iLgOFnG {
    display: flex;
    flex-direction: column;
}

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

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

.wLB2xZf .aq4XIwL {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.zTtDOEE + .vxE0mEt {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.e8GKiOV a:not(.J6jfOKv):not(.MJjyoA6):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hhglAjb {
    text-align: left;
}

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

.Wn8nPcu {
    text-align: right;
}

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

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

.R04Xo6Y { grid-template-columns: repeat(2, 1fr); }
.g1phpI9 { grid-template-columns: repeat(3, 1fr); }
.NaYqPbh { grid-template-columns: repeat(4, 1fr); }

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

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

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

.SsnRfqL .pVuNL1Q {
    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));
}

.SsnRfqL .pVuNL1Q: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);
}

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

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

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

.HL0h31R.RjooOsn .F3Tfc7v svg {
    transform: rotate(180deg);
}

.WmOoku2 { flex: 1; }

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

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

.HL0h31R.RjooOsn .SPIh0Hx {
    display: block;
}

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

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

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

.SPIh0Hx li.t8bnioM {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.OOR3CR4 p:last-child, .OPryVOj p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.Hs9MdUs.ZyBducJ {
    transform: translate(-50%, 0);
}

.gPpBkNx {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.YM8lp1w.ZyBducJ {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xdScU7H.ZyBducJ {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.XTrrPOi {
    margin: 0;
}

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

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

.C8dkvDm {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .KLWhhGU,
    .CaoFrnG {
        display: none;
    }

    .Z7BwsS6 {
        display: block;
    }

    .qSfc5LR {
        display: flex;
    }

    .wLB2xZf {
        display: flex;
    }

    .vxE0mEt {
        padding: 2rem 0;
    }

    .G1UwPpd {
        padding: 0 1rem;
    }

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

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

    .R04Xo6Y,
    .g1phpI9,
    .NaYqPbh {
        grid-template-columns: 1fr;
    }

    .tVB219q img,
    .znzNJt5 img {
        margin: 0 auto;
    }

    .SsnRfqL {
        gap: 0.8rem;
    }

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

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

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

    .Hs9MdUs.ZyBducJ {
        transform: translateY(0);
    }

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

}

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

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

    .YBUzPrP {
        height: 30px;
    }

    .qSfc5LR .qq90l3x {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .vxE0mEt {
        padding: 1.5rem 0;
    }

    .G1UwPpd {
        padding: 0 0.75rem;
    }

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

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

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

    .qL9tzWx {
        font-size: 0.85rem;
    }

    .OiYZmYW {
        font-size: 0.72rem;
    }

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

    .yWVxsXj {
        font-size: 1.35rem;
    }

    .ygXVMTu {
        font-size: 1.2rem;
    }

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

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


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

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

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