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

:root {
    --primary: #1C75FF;
    --primary-hover: #3d8bff;
    --primary-rgb: 28, 117, 255;
    --accent: #1C75FF;
    --accent-hover: #3d8bff;
    --accent-rgb: 28, 117, 255;
    --on-primary: #ffffff;

    --bg: #1A283B;
    --surface: #1C2E3F;
    --surface-muted: #142231;
    --footer-bg: #101C2B;
    --footer-text: #cbd5e1;
    --footer-text-muted: #94a3b8;
    --footer-heading-color: #e2e8f0;
    --footer-link-color: #94a3b8;
    --footer-link-hover: #3d8bff;
    --footer-border: rgba(255,255,255,0.08);
    --footer-copy-color: #64748b;

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

    --border: #2d3d52;

    --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: #1C75FF;
    --blockquote-bg: #1C2E3F;
    --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: #1C75FF;
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #3d8bff;
    --btn-register-hover-text: #ffffff;

    --nav-link-color: #b8c5d6;
    --nav-link-hover: #1C75FF;
    --nav-link-hover-bg: rgba(28, 117, 255, 0.08);

    --breadcrumb-link-color: #b8c5d6;
    --breadcrumb-link-hover: #1C75FF;
    --breadcrumb-current-color: #94a3b8;
    --breadcrumb-sep-color: #94a3b8;

    --scroll-top-bg: #1C75FF;
    --scroll-top-color: #ffffff;
    --scroll-top-hover-bg: #3d8bff;

    --content-link-color: #1C75FF;
    --content-link-hover: #3d8bff;

    --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: #1C75FF;
    --content-btn-register-text: #ffffff;
    --content-btn-register-hover-bg: #3d8bff;
    --content-btn-register-hover-text: #ffffff;

    --table-head-bg: #1C75FF;
    --table-head-text: #ffffff;
    --table-row-even-bg: #142231;
    --table-row-hover: rgba(28, 117, 255, 0.05);

    --bonus-bar-bg: #1A283B;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #1C75FF;
    --bonus-bar-btn-text: #ffffff;

    --popup-bg: #1C2E3F;
    --popup-title-color: #ffffff;
    --popup-subtitle-color: #b8c5d6;
    --popup-btn-bg: #1C75FF;
    --popup-btn-text: #ffffff;
    --popup-card-bg: #0f1e35;
    --popup-card-border: #1C75FF;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #fbbf24;

    --header-bg: #1A283B;
    --header-border: #2d3d52;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.2);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #ffffff;
    --games-card-bg: #142231;
    --games-card-radius: 14;
    --games-arrow-bg: #1C75FF;
    --games-arrow-color: #ffffff;

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

    --help-title-color: #ffffff;
    --help-card-bg: #1C2E3F;
    --help-card-border: #2d3d52;
    --help-card-radius: 14;
    --help-btn-bg: #1C75FF;
    --help-btn-text: #ffffff;
    --help-btn-hover: #3d8bff;
}

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

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

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

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

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

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

.NgbjSzS a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.dqHj8NJ:hover .agX0io8 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.JQgNSr3 .H2UXC2a:hover {
    transform: translateY(-1px);
}

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

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

body.KAij3VO {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.RtgGuiz .BaBPNRi {
    display: flex;
    flex-direction: column;
}

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

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

.RtgGuiz .f8CIsUU {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.AGl8cpm + .zYLK73v {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.PJB9sci a:not(.lQAclMM):not(.SRJEU1s):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.s58Fee0 {
    text-align: left;
}

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

.CAMRNfu {
    text-align: right;
}

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

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

.G4iLdLX { grid-template-columns: repeat(2, 1fr); }
.cVe5FoT { grid-template-columns: repeat(3, 1fr); }
.vssAVdZ { grid-template-columns: repeat(4, 1fr); }

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

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

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

.jIFoHnq .DTIngaP {
    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));
}

.jIFoHnq .DTIngaP: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);
}

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

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

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

.SHLhbkc.rMqQTjY .X5AnsYR svg {
    transform: rotate(180deg);
}

.fDLkvLg { flex: 1; }

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

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

.SHLhbkc.rMqQTjY .TtV097G {
    display: block;
}

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

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

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

.TtV097G li.wpMh6R7 {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.oqx5Tq9 p:last-child, .k3CKGWl p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.UaorSaq.VR1SKJm {
    transform: translate(-50%, 0);
}

.rFwVeNE {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.Jj84OV4.VR1SKJm {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.MYJ3Ldq.VR1SKJm {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.ANtXuYL {
    margin: 0;
}

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

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

.fUR9Uyy {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .NgbjSzS,
    .VoEOlMN {
        display: none;
    }

    .PpnQDG7 {
        display: block;
    }

    .JQgNSr3 {
        display: flex;
    }

    .RtgGuiz {
        display: flex;
    }

    .zYLK73v {
        padding: 2rem 0;
    }

    .dAds1EW {
        padding: 0 1rem;
    }

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

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

    .G4iLdLX,
    .cVe5FoT,
    .vssAVdZ {
        grid-template-columns: 1fr;
    }

    .pvStOW6 img,
    .QZNnCYV img {
        margin: 0 auto;
    }

    .jIFoHnq {
        gap: 0.8rem;
    }

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

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

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

    .UaorSaq.VR1SKJm {
        transform: translateY(0);
    }

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

}

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

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

    .KxyOM8u {
        height: 30px;
    }

    .JQgNSr3 .H2UXC2a {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .zYLK73v {
        padding: 1.5rem 0;
    }

    .dAds1EW {
        padding: 0 0.75rem;
    }

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

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

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

    .Q2He7kH {
        font-size: 0.85rem;
    }

    .F2C32Qr {
        font-size: 0.72rem;
    }

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

    .FZ6zMZN {
        font-size: 1.35rem;
    }

    .BbFPnAP {
        font-size: 1.2rem;
    }

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

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


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

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

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