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

:root {
    --primary: #176BC1;
    --primary-hover: #12589F;
    --primary-rgb: 23, 107, 193;
    --accent: #64B632;
    --accent-hover: #519A27;
    --accent-rgb: 100, 182, 50;
    --on-primary: #ffffff;

    --bg: #121214;
    --surface: #202023;
    --surface-muted: #2A2A2E;
    --footer-bg: #0D0D0F;
    --footer-text: #D8D9DE;
    --footer-text-muted: #8C8F98;
    --footer-heading-color: #FFFFFF;
    --footer-link-color: #B5B5BA;
    --footer-link-hover: #64B632;
    --footer-border: rgba(255,255,255,0.08);
    --footer-copy-color: #7C7C84;

    --text: #F5F5F6;
    --text-muted: #B5B5BA;
    --text-soft: #7C7C84;

    --border: #35353B;

    --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: #176BC1;
    --blockquote-bg: #1B2430;
    --blockquote-text: #E8EAF0;

    --btn-login-bg: #242427;
    --btn-login-text: #FFFFFF;
    --btn-login-border: #2F2F34;
    --btn-login-hover-bg: #2E2E33;
    --btn-login-hover-text: #FFFFFF;
    --btn-register-bg: #64B632;
    --btn-register-text: #FFFFFF;
    --btn-register-hover-bg: #519A27;
    --btn-register-hover-text: #FFFFFF;

    --nav-link-color: #E7E8EC;
    --nav-link-hover: #FFFFFF;
    --nav-link-hover-bg: rgba(23,107,193,0.10);

    --breadcrumb-link-color: #A6A9B2;
    --breadcrumb-link-hover: #176BC1;
    --breadcrumb-current-color: #F5F5F6;
    --breadcrumb-sep-color: #7C7C84;

    --scroll-top-bg: #176BC1;
    --scroll-top-color: #FFFFFF;
    --scroll-top-hover-bg: #12589F;

    --content-link-color: #4E96E2;
    --content-link-hover: #64B632;

    --content-btn-login-bg: #242427;
    --content-btn-login-text: #FFFFFF;
    --content-btn-login-border: #2F2F34;
    --content-btn-login-hover-bg: #2E2E33;
    --content-btn-login-hover-text: #FFFFFF;
    --content-btn-register-bg: #64B632;
    --content-btn-register-text: #FFFFFF;
    --content-btn-register-hover-bg: #519A27;
    --content-btn-register-hover-text: #FFFFFF;

    --table-head-bg: #176BC1;
    --table-head-text: #FFFFFF;
    --table-row-even-bg: #24262B;
    --table-row-hover: rgba(23, 107, 193, 0.05);

    --bonus-bar-bg: #176BC1;
    --bonus-bar-text: #FFFFFF;
    --bonus-bar-btn-bg: #64B632;
    --bonus-bar-btn-text: #FFFFFF;

    --popup-bg: #1A1B1F;
    --popup-title-color: #FFFFFF;
    --popup-subtitle-color: #B5B5BA;
    --popup-btn-bg: #64B632;
    --popup-btn-text: #FFFFFF;
    --popup-card-bg: #202023;
    --popup-card-border: #176BC1;
    --popup-bonus-name-color: #FFFFFF;
    --popup-bonus-amount-color: #64B632;

    --header-bg: #151517;
    --header-border: #2A2A2E;
    --header-shadow: 0 2px 12px rgba(0,0,0,0.35);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #FFFFFF;
    --games-card-bg: #202023;
    --games-card-radius: 14;
    --games-arrow-bg: #2A2A2E;
    --games-arrow-color: #FFFFFF;

    --payments-title-color: #FFFFFF;
    --payments-card-bg: #202023;
    --payments-card-radius: 10px;
    --payments-name-color: #B5B5BA;

    --help-title-color: #FFFFFF;
    --help-card-bg: #202023;
    --help-card-border: #35353B;
    --help-card-radius: 14;
    --help-btn-bg: #176BC1;
    --help-btn-text: #FFFFFF;
    --help-btn-hover: #12589F;
}

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

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

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

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

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

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

.fFuSB1I a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.lJRrz2D:hover .ckxAlxQ {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.ULEy6eb .LFjk3xt:hover {
    transform: translateY(-1px);
}

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

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

body.AHFo1ik {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.NXBPutb .xzlA2bS {
    display: flex;
    flex-direction: column;
}

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

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

.NXBPutb .YQyXvDk {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.lYYRicd + .K3cfYmr {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rdlOERf a:not(.Y1T6vCd):not(.zXS0p0i):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.AlrE6NW {
    text-align: left;
}

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

.FUXx0rP {
    text-align: right;
}

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

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

.TYdRiwo { grid-template-columns: repeat(2, 1fr); }
.Q2xcCep { grid-template-columns: repeat(3, 1fr); }
.Biqv8yU { grid-template-columns: repeat(4, 1fr); }

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

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

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

.g89Jagk .PgmG5ow {
    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));
}

.g89Jagk .PgmG5ow: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);
}

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

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

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

.iwpLieG.o4XWRs1 .NjRpaVX svg {
    transform: rotate(180deg);
}

.kPWhCUC { flex: 1; }

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

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

.iwpLieG.o4XWRs1 .UAZ4Wqb {
    display: block;
}

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

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

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

.UAZ4Wqb li.bsF0I7K {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.euSFbRt p:last-child, .oxzkV23 p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.H1Z93Fv.MCzbAb4 {
    transform: translate(-50%, 0);
}

.QQALvTV {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.JmUlLC8.MCzbAb4 {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.GYo1btc.MCzbAb4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.Kl0Ac8v {
    margin: 0;
}

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

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

.FEU1uSF {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .fFuSB1I,
    .oIU5kRo {
        display: none;
    }

    .Q2ruN5T {
        display: block;
    }

    .ULEy6eb {
        display: flex;
    }

    .NXBPutb {
        display: flex;
    }

    .K3cfYmr {
        padding: 2rem 0;
    }

    .Q7CWiKl {
        padding: 0 1rem;
    }

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

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

    .TYdRiwo,
    .Q2xcCep,
    .Biqv8yU {
        grid-template-columns: 1fr;
    }

    .XDrIURP img,
    .qRa4hja img {
        margin: 0 auto;
    }

    .g89Jagk {
        gap: 0.8rem;
    }

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

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

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

    .H1Z93Fv.MCzbAb4 {
        transform: translateY(0);
    }

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

}

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

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

    .evSNHu1 {
        height: 30px;
    }

    .ULEy6eb .LFjk3xt {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .K3cfYmr {
        padding: 1.5rem 0;
    }

    .Q7CWiKl {
        padding: 0 0.75rem;
    }

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

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

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

    .wTHAa1P {
        font-size: 0.85rem;
    }

    .Mgy7pv4 {
        font-size: 0.72rem;
    }

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

    .YfqRKrM {
        font-size: 1.35rem;
    }

    .I3OeLVa {
        font-size: 1.2rem;
    }

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

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


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

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

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