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

:root {
    --primary: #7a4dff;
    --primary-hover: #6438de;
    --primary-rgb: 122, 77, 255;
    --accent: #d84dff;
    --accent-hover: #b83bdc;
    --accent-rgb: 216, 77, 255;
    --on-primary: #ffffff;

    --bg: #0d0f18;
    --surface: #171a28;
    --surface-muted: #222638;
    --footer-bg: #090b12;
    --footer-text: #dedbe8;
    --footer-text-muted: #9893aa;
    --footer-heading-color: #ffffff;
    --footer-link-color: #b7b2c8;
    --footer-link-hover: #d84dff;
    --footer-border: rgba(122,77,255,0.24);
    --footer-copy-color: #716c80;

    --text: #f6f4fb;
    --text-muted: #b7b2c8;
    --text-soft: #858096;

    --border: #332f49;

    --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: #d84dff;
    --blockquote-bg: #211a30;
    --blockquote-text: #eee9f5;

    --btn-login-bg: transparent;
    --btn-login-text: #b98cff;
    --btn-login-border: #8f68ff;
    --btn-login-hover-bg: #332755;
    --btn-login-hover-text: #ffffff;
    --btn-register-bg: #7a4dff;
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #6438de;
    --btn-register-hover-text: #ffffff;

    --nav-link-color: #dedbe8;
    --nav-link-hover: #d84dff;
    --nav-link-hover-bg: rgba(216,77,255,0.10);

    --breadcrumb-link-color: #aaa4bb;
    --breadcrumb-link-hover: #b98cff;
    --breadcrumb-current-color: #f6f4fb;
    --breadcrumb-sep-color: #706b7e;

    --scroll-top-bg: #7a4dff;
    --scroll-top-color: #ffffff;
    --scroll-top-hover-bg: #6438de;

    --content-link-color: #cf91ff;
    --content-link-hover: #e8b8ff;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #b98cff;
    --content-btn-login-border: #8f68ff;
    --content-btn-login-hover-bg: #332755;
    --content-btn-login-hover-text: #ffffff;
    --content-btn-register-bg: #7a4dff;
    --content-btn-register-text: #ffffff;
    --content-btn-register-hover-bg: #6438de;
    --content-btn-register-hover-text: #ffffff;

    --table-head-bg: #6e42dc;
    --table-head-text: #ffffff;
    --table-row-even-bg: #222638;
    --table-row-hover: rgba(122, 77, 255, 0.05);

    --bonus-bar-bg: #25183d;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #d84dff;
    --bonus-bar-btn-text: #ffffff;

    --popup-bg: #141720;
    --popup-title-color: #ffffff;
    --popup-subtitle-color: #b7b2c8;
    --popup-btn-bg: #7a4dff;
    --popup-btn-text: #ffffff;
    --popup-card-bg: #211a30;
    --popup-card-border: #7a4dff;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #ff9f1c;

    --header-bg: #0a0c14;
    --header-border: #29243d;
    --header-shadow: 0 2px 14px rgba(0,0,0,0.38);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #f6f4fb;
    --games-card-bg: #1d2030;
    --games-card-radius: 14;
    --games-arrow-bg: #7a4dff;
    --games-arrow-color: #ffffff;

    --payments-title-color: #f6f4fb;
    --payments-card-bg: #1d2030;
    --payments-card-radius: 10px;
    --payments-name-color: #b7b2c8;

    --help-title-color: #f6f4fb;
    --help-card-bg: #1d2030;
    --help-card-border: #332f49;
    --help-card-radius: 14;
    --help-btn-bg: #7a4dff;
    --help-btn-text: #ffffff;
    --help-btn-hover: #6438de;
}

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

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

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

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

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

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

.xIctwJZ a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.uikHoq2:hover .J2u6KjY {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.jz54rEd .E6nyTqP:hover {
    transform: translateY(-1px);
}

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

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

body.MOROEcS {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.b7709tS .BCAwJQ0 {
    display: flex;
    flex-direction: column;
}

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

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

.b7709tS .Wl6ny69 {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.fOKqZQW + .xQ10Dsu {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.r9hGqq1 a:not(.s3LCdwY):not(.xez3Uu7):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.huhghM1 {
    text-align: left;
}

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

.XTAjVFS {
    text-align: right;
}

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

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

.kM99fmV { grid-template-columns: repeat(2, 1fr); }
.BLEDUXL { grid-template-columns: repeat(3, 1fr); }
.oZl2TEA { grid-template-columns: repeat(4, 1fr); }

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

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

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

.u8qVKMk .KjEptwK {
    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));
}

.u8qVKMk .KjEptwK: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);
}

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

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

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

.yVLk9a6.LLrDtYY .Et5elob svg {
    transform: rotate(180deg);
}

.bUympmo { flex: 1; }

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

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

.yVLk9a6.LLrDtYY .D7AHA2f {
    display: block;
}

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

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

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

.D7AHA2f li.bgNrrky {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.jEDUw9d p:last-child, .btDPM0G p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.OMHUvuY.viaHNxF {
    transform: translate(-50%, 0);
}

.KtprUif {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.kSkFbGW.viaHNxF {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yienUqz.viaHNxF {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.KCmF0Tg {
    margin: 0;
}

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

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

.jRwMn9X {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .xIctwJZ,
    .SDvanrB {
        display: none;
    }

    .nGI17lT {
        display: block;
    }

    .jz54rEd {
        display: flex;
    }

    .b7709tS {
        display: flex;
    }

    .xQ10Dsu {
        padding: 2rem 0;
    }

    .YebBiGr {
        padding: 0 1rem;
    }

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

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

    .kM99fmV,
    .BLEDUXL,
    .oZl2TEA {
        grid-template-columns: 1fr;
    }

    .OO3RUGI img,
    .i1tX8xd img {
        margin: 0 auto;
    }

    .u8qVKMk {
        gap: 0.8rem;
    }

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

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

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

    .OMHUvuY.viaHNxF {
        transform: translateY(0);
    }

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

}

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

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

    .wlHlx5c {
        height: 30px;
    }

    .jz54rEd .E6nyTqP {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .xQ10Dsu {
        padding: 1.5rem 0;
    }

    .YebBiGr {
        padding: 0 0.75rem;
    }

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

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

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

    .mhdq4Zh {
        font-size: 0.85rem;
    }

    .q1pBljR {
        font-size: 0.72rem;
    }

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

    .GA9I27i {
        font-size: 1.35rem;
    }

    .IWqdfIb {
        font-size: 1.2rem;
    }

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

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


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

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

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