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

:root {
    --primary: #030303;
    --primary-hover: #313135;
    --primary-rgb: 3, 3, 3;
    --accent: #16a34a;
    --accent-hover: #22c55e;
    --accent-rgb: 22, 163, 74;
    --on-primary: rgba(0, 0, 0, 1);

    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-muted: #f1f5f9;
    --footer-bg: #1e293b;
    --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: #1e293b;
    --text-muted: #000000;
    --text-soft: #050505;

    --border: #e2e8f0;

    --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: rgba(248, 134, 27, 1);
    --blockquote-bg: #eff6ff;
    --blockquote-text: transparent;

    --btn-login-bg: transparent;
    --btn-login-text: rgba(0, 0, 0, 1);
    --btn-login-border: rgba(14, 176, 3, 1);
    --btn-login-hover-bg: #a0a0a2;
    --btn-login-hover-text: transparent;
    --btn-register-bg: rgba(248, 134, 27, 1);
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #c7c7c7;
    --btn-register-hover-text: #bababa;

    --table-head-bg: rgba(248, 134, 27, 1);
    --table-head-text: #ffffff;
    --table-row-even-bg: #f1f5f9;
    --table-row-hover: rgba(3, 3, 3, 0.05);

    --bonus-bar-bg: #0f172a;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #22c55e;
    --bonus-bar-btn-text: #ffffff;

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

    --header-bg: rgba(248, 134, 27, 1);
    --header-border: #e2e8f0;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #1e293b;
    --games-card-bg: #f1f5f9;
    --games-card-radius: 14;
    --games-arrow-bg: #2563eb;
    --games-arrow-color: #ffffff;

    --payments-title-color: #1e293b;
    --payments-card-bg: #f1f5f9;
    --payments-card-radius: 10px;
    --payments-name-color: #64748b;

    --help-title-color: #1e293b;
    --help-card-bg: #ffffff;
    --help-card-border: #e2e8f0;
    --help-card-radius: 14;
    --help-btn-bg: #2563eb;
    --help-btn-text: #ffffff;
    --help-btn-hover: #3b82f6;
}

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

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

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

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

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

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

.JCrtEvo a {
    text-decoration: none;
}

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

.ub6tk7b:hover,
.ub6tk7b.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

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

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

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

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

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

.cpMqT3J:hover .Tbr5Ppx {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.D9eYzFx .GeqaZwr:hover {
    transform: translateY(-1px);
}

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

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

body.ESCa1rT {
    overflow: hidden;
}

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

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

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

.d9dHWqX > a:not(.skg2eEX) {
    display: block;
    padding: 0.6rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: none;
}

.d9dHWqX > a:not(.skg2eEX):hover,
.d9dHWqX > a.active {
    color: var(--primary);
}

/* Mobile dropdown */
.d9dHWqX .mbWUCkX {
    display: flex;
    flex-direction: column;
}

.d9dHWqX .beP17nI {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    font-weight: 500;
}

.d9dHWqX .beP17nI:hover,
.d9dHWqX .beP17nI.active {
    color: var(--primary);
}

.d9dHWqX .NlBPaCR {
    display: block;
    padding: 0 0 0 1rem;
}

.d9dHWqX .NlBPaCR a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
}

.d9dHWqX .NlBPaCR a:hover,
.d9dHWqX .NlBPaCR a.active {
    color: var(--primary);
}

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

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

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

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

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

.qPDD9W4 + .DfFqCVz {
    padding-top: 1rem;
}

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

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

.JpeU6Yr a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.z2yZdnh {
    color: var(--text-soft);
    opacity: 0.6;
    user-select: none;
}

.oikxnWN {
    color: var(--text);
    font-weight: 500;
}

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

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

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

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

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

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

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

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

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

.c4J5CkB a:not(.skg2eEX) {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.c4J5CkB a:not(.skg2eEX):not(.ouvfQyu):hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.AcD0YeT {
    text-align: left;
}

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

.gJElF2r {
    text-align: right;
}

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

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

.scwaFU1 { grid-template-columns: repeat(2, 1fr); }
.reeh5f0 { grid-template-columns: repeat(3, 1fr); }
.Hnlr9Jn { grid-template-columns: repeat(4, 1fr); }

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

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

.CeiUBxG .skg2eEX {
    padding: 0.7rem 1.6rem;
    background: var(--btn-register-bg);
    color: 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;
}

.CeiUBxG .Il6nmuA {
    background: var(--btn-login-bg);
    color: var(--btn-login-text);
    border: 2px solid var(--btn-login-border);
}

.CeiUBxG .Il6nmuA:hover {
    background: var(--btn-login-hover-bg);
    color: var(--btn-login-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

.CeiUBxG .rXYAxEt:hover {
    background: var(--btn-register-hover-bg);
    color: var(--btn-register-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

/* ================================================================
   TOC SHORTCODE
   ================================================================ */
.oA41ucj {
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
}

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

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

.oA41ucj.B6pIVob .dV8lNpV svg {
    transform: rotate(180deg);
}

.mqoKmHh { flex: 1; }

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

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

.oA41ucj.B6pIVob .kmLgY1d {
    display: block;
}

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

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

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

.kmLgY1d li.fFFap4F {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.msTqub9 p:last-child, .EJKnj0q p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.A6Fwhe2.nZp2a14 {
    transform: translate(-50%, 0);
}

.vsgicuL {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.SxE3DeR.nZp2a14 {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.FN10ACx {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    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;
    z-index: 999;
}

.FN10ACx.nZp2a14 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.FN10ACx:hover {
    background: var(--primary-hover);
}

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

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

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

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

.LtYiX1v {
    margin: 0;
}

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

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

.tTQotUN {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .JCrtEvo,
    .SmQgiJq {
        display: none;
    }

    .OdMHglS {
        display: block;
    }

    .D9eYzFx {
        display: flex;
    }

    .d9dHWqX {
        display: flex;
    }

    .DfFqCVz {
        padding: 2rem 0;
    }

    .MyEcbAR {
        padding: 0 1rem;
    }

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

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

    .scwaFU1,
    .reeh5f0,
    .Hnlr9Jn {
        grid-template-columns: 1fr;
    }

    .BRAdUdD img,
    .cNNxB3F img {
        margin: 0 auto;
    }

    .CeiUBxG {
        gap: 0.8rem;
    }

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

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

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

    .A6Fwhe2.nZp2a14 {
        transform: translateY(0);
    }

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

}

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

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

    .zEJhwx9 {
        height: 30px;
    }

    .D9eYzFx .GeqaZwr {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .DfFqCVz {
        padding: 1.5rem 0;
    }

    .MyEcbAR {
        padding: 0 0.75rem;
    }

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

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

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

    .COVEafL {
        font-size: 0.85rem;
    }

    .glXps1d {
        font-size: 0.72rem;
    }

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

    .X0EFfPb {
        font-size: 1.35rem;
    }

    .FxxDklr {
        font-size: 1.2rem;
    }

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

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


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

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

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