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

:root {
    --primary: #1ED760;
    --primary-hover: #2ee66a;
    --primary-rgb: 30, 215, 96;
    --accent: #5D93E4;
    --accent-hover: #7aa8ea;
    --accent-rgb: 93, 147, 228;
    --on-primary: #ffffff;

    --bg: #1A1A1A;
    --surface: #272E3B;
    --surface-muted: #1f252e;
    --footer-bg: #15181e;

    --text: #ffffff;
    --text-muted: #a8b4c4;
    --text-soft: #8a96a8;

    --border: #3d4554;

    --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: #5D93E4;
    --blockquote-bg: #272E3B;
    --blockquote-text: #e2e8f0;

    --btn-login-bg: #2F3643;
    --btn-login-text: #ffffff;
    --btn-login-border: #3d4554;
    --btn-login-hover-bg: #3d4554;
    --btn-login-hover-text: #ffffff;
    --btn-register-bg: #1ED760;
    --btn-register-text: #ffffff;
    --btn-register-hover-bg: #2ee66a;
    --btn-register-hover-text: #ffffff;

    --table-head-bg: #1ED760;
    --table-head-text: #ffffff;
    --table-row-even-bg: #1f252e;
    --table-row-hover: rgba(30, 215, 96, 0.05);

    --bonus-bar-bg: #2F3643;
    --bonus-bar-text: #ffffff;
    --bonus-bar-btn-bg: #1ED760;
    --bonus-bar-btn-text: #ffffff;

    --popup-bg: #272E3B;
    --popup-title-color: #ffffff;
    --popup-subtitle-color: #a8b4c4;
    --popup-btn-bg: #1ED760;
    --popup-btn-text: #ffffff;
    --popup-card-bg: #1a2030;
    --popup-card-border: #1ED760;
    --popup-bonus-name-color: #ffffff;
    --popup-bonus-amount-color: #fbbf24;

    --header-bg: #272E3B;
    --header-border: #3d4554;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.3);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #ffffff;
    --games-card-bg: #1f252e;
    --games-card-radius: 14;
    --games-arrow-bg: #5D93E4;
    --games-arrow-color: #ffffff;

    --payments-title-color: #ffffff;
    --payments-card-bg: #1f252e;
    --payments-card-radius: 10px;
    --payments-name-color: #a8b4c4;

    --help-title-color: #ffffff;
    --help-card-bg: #272E3B;
    --help-card-border: #3d4554;
    --help-card-radius: 14;
    --help-btn-bg: #1ED760;
    --help-btn-text: #ffffff;
    --help-btn-hover: #2ee66a;
}

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

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

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

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

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

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

.E0fleMO a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.CE9kXal:hover .wkWm2lg {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.h4JC3be .eTzNFWi:hover {
    transform: translateY(-1px);
}

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

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

body.Bv2xWak {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.sLoxRdn .WLQQBbh {
    display: flex;
    flex-direction: column;
}

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

.sLoxRdn .QlKArjz:hover,
.sLoxRdn .QlKArjz.active {
    color: var(--primary);
}

.sLoxRdn .LYSSrTh {
    display: block;
    padding: 0 0 0 1rem;
}

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

.sLoxRdn .LYSSrTh a:hover,
.sLoxRdn .LYSSrTh a.active {
    color: var(--primary);
}

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

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

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

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

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

.iEnp0Q5 + .QcSsJlk {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.IAnorqW a:not(.wGqeht8):not(.DLmI60Q):hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.Sf3ovWA {
    text-align: left;
}

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

.C61MsO9 {
    text-align: right;
}

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

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

.Dfscid8 { grid-template-columns: repeat(2, 1fr); }
.If3DLrA { grid-template-columns: repeat(3, 1fr); }
.UGxmFH8 { grid-template-columns: repeat(4, 1fr); }

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

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

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

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

.o7jmE0Y .zBm3xvh: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);
}

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

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

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

.WTlU4VM.UWG6IbV .DmEe3lx svg {
    transform: rotate(180deg);
}

.mIOosYc { flex: 1; }

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

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

.WTlU4VM.UWG6IbV .tUxkF2V {
    display: block;
}

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

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

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

.tUxkF2V li.l7UHnG4 {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.AkNOgIS p:last-child, .rp5MJ6F p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.zhQxxWC.ZwNETg7 {
    transform: translate(-50%, 0);
}

.p0srkBA {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.sdp81Ae.ZwNETg7 {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.oL85BRr.ZwNETg7 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.bmwnBbV {
    margin: 0;
}

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

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

.nXvXDRw {
    flex: 0 0 auto;
}

.KUA8eWE {
    font-weight: 600;
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.vr6YmNw {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

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

.Jz4Iciz a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

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

.DydgsET {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
    text-align: center;
}

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

.bqVifSF {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0 0 0.35rem;
}

.rWFyC41 {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
}
.rWFyC41 li a {
    color: #94a3b8;
    font-size: 0.85rem;
    text-decoration: none;
}
.rWFyC41 li a:hover { color: #fff; }

.ALYszWE {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
}

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

    .E0fleMO,
    .WfWT0YF {
        display: none;
    }

    .rTQW1wh {
        display: block;
    }

    .h4JC3be {
        display: flex;
    }

    .sLoxRdn {
        display: flex;
    }

    .QcSsJlk {
        padding: 2rem 0;
    }

    .OTzHabU {
        padding: 0 1rem;
    }

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

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

    .Dfscid8,
    .If3DLrA,
    .UGxmFH8 {
        grid-template-columns: 1fr;
    }

    .tw4WGjX img,
    .vhIE8B1 img {
        margin: 0 auto;
    }

    .o7jmE0Y {
        gap: 0.8rem;
    }

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

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

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

    .zhQxxWC.ZwNETg7 {
        transform: translateY(0);
    }

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

}

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

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

    .WvOSifc {
        height: 30px;
    }

    .h4JC3be .eTzNFWi {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .QcSsJlk {
        padding: 1.5rem 0;
    }

    .OTzHabU {
        padding: 0 0.75rem;
    }

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

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

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

    .mPq8BLW {
        font-size: 0.85rem;
    }

    .jMdy0OZ {
        font-size: 0.72rem;
    }

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

    .QxemZVM {
        font-size: 1.35rem;
    }

    .pvlVVRu {
        font-size: 1.2rem;
    }

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

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


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

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

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