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

:root {
    --primary: #2563eb;
    --primary-hover: #3b82f6;
    --primary-rgb: 37, 99, 235;
    --accent: #16a34a;
    --accent-hover: #22c55e;
    --accent-rgb: 22, 163, 74;
    --on-primary: #ffffff;

    --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: #64748b;
    --text-soft: #94a3b8;

    --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: #2563eb;
    --blockquote-bg: #eff6ff;
    --blockquote-text: #334155;

    --btn-login-bg: transparent;
    --btn-login-text: #ff6600;
    --btn-login-border: #ff6600;
    --btn-login-hover-bg: #ff6600;
    --btn-login-hover-text: #ffffff;
    --btn-register-bg: #ff6600;
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #ff6600;
    --btn-register-hover-text: #ffffff;

    --table-head-bg: #ff6600;
    --table-head-text: #ffffff;
    --table-row-even-bg: #f1f5f9;
    --table-row-hover: rgba(37, 99, 235, 0.05);

    --bonus-bar-bg: #ff6600;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #16a34a;
    --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: #ff6600;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #facc15;

    --header-bg: #ffffff;
    --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: #ff6600;
    --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: #2ff6600;
    --help-btn-text: #ffffff;
    --help-btn-hover: #ff6600;
}

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

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

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

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

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

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

.smLHBK4 a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.f5N5kXH:hover .rYWX1Jc {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.KzwGJ32 .yW1C2d8:hover {
    transform: translateY(-1px);
}

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

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

body.dHUxc45 {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.ozsqbvt .w1eGBPU {
    display: flex;
    flex-direction: column;
}

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

.ozsqbvt .PD6cvfp:hover,
.ozsqbvt .PD6cvfp.active {
    color: var(--primary);
}

.ozsqbvt .MdV7Bi4 {
    display: block;
    padding: 0 0 0 1rem;
}

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

.ozsqbvt .MdV7Bi4 a:hover,
.ozsqbvt .MdV7Bi4 a.active {
    color: var(--primary);
}

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

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

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

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

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

.VK1VIvl + .XAkAeYG {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.RGGbVxh a:not(.oYUOmWn):not(.Xy8YT5i):hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hNd7VSi {
    text-align: left;
}

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

.TzYnxzg {
    text-align: right;
}

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

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

.ybFg45F { grid-template-columns: repeat(2, 1fr); }
.oGFrRCQ { grid-template-columns: repeat(3, 1fr); }
.yTXiBg3 { grid-template-columns: repeat(4, 1fr); }

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

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

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

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

.AhCl0QI .FytUzaG: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);
}

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

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

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

.oU2BYwQ.wCylNdp .i37H4nE svg {
    transform: rotate(180deg);
}

.gw6TvwJ { flex: 1; }

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

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

.oU2BYwQ.wCylNdp .seG54BL {
    display: block;
}

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

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

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

.seG54BL li.SHYbkBY {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.oneTGA1 p:last-child, .Lrgsc3I p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wPRgmyS.emOTA06 {
    transform: translate(-50%, 0);
}

.TSxfmbO {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.PEJOr6Q.emOTA06 {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.DPcJfZd.emOTA06 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.shgU4B4 {
    margin: 0;
}

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

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

.zt3kn4R {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .smLHBK4,
    .ynS9XNh {
        display: none;
    }

    .etBivAb {
        display: block;
    }

    .KzwGJ32 {
        display: flex;
    }

    .ozsqbvt {
        display: flex;
    }

    .XAkAeYG {
        padding: 2rem 0;
    }

    .EGNT2cF {
        padding: 0 1rem;
    }

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

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

    .ybFg45F,
    .oGFrRCQ,
    .yTXiBg3 {
        grid-template-columns: 1fr;
    }

    .VOHINGX img,
    .AUTsUUm img {
        margin: 0 auto;
    }

    .AhCl0QI {
        gap: 0.8rem;
    }

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

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

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

    .wPRgmyS.emOTA06 {
        transform: translateY(0);
    }

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

}

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

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

    .QNWsP9p {
        height: 30px;
    }

    .KzwGJ32 .yW1C2d8 {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .XAkAeYG {
        padding: 1.5rem 0;
    }

    .EGNT2cF {
        padding: 0 0.75rem;
    }

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

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

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

    .YCUvR1K {
        font-size: 0.85rem;
    }

    .N50N0s3 {
        font-size: 0.72rem;
    }

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

    .dgA1dMT {
        font-size: 1.35rem;
    }

    .NAGxW3u {
        font-size: 1.2rem;
    }

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

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


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

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

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