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

:root {
    --primary: #4E8DFF;
    --primary-hover: #3577E6;
    --primary-rgb: 78, 141, 255;
    --accent: #7C6BFF;
    --accent-hover: #6856F0;
    --accent-rgb: 124, 107, 255;
    --on-primary: #FFFFFF;

    --bg: #07162B;
    --surface: #0D2140;
    --surface-muted: #132A4C;
    --footer-bg: #050F1F;
    --footer-text: #DCE8FA;
    --footer-text-muted: #8EA8CF;
    --footer-heading-color: #FFFFFF;
    --footer-link-color: #B7C9E8;
    --footer-link-hover: #8AB6FF;
    --footer-border: rgba(124,107,255,0.18);
    --footer-copy-color: #738CB3;

    --text: #EDF4FF;
    --text-muted: #AFC3E6;
    --text-soft: #7F97BF;

    --border: #27446D;

    --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: #7C6BFF;
    --blockquote-bg: #10233F;
    --blockquote-text: #E2ECFA;

    --btn-login-bg: transparent;
    --btn-login-text: #8AB6FF;
    --btn-login-border: #4E8DFF;
    --btn-login-hover-bg: #112949;
    --btn-login-hover-text: #FFFFFF;
    --btn-register-bg: #7C6BFF;
    --btn-register-text: #FFFFFF;
    --btn-register-hover-bg: #6856F0;
    --btn-register-hover-text: #FFFFFF;

    --nav-link-color: #D7E6FB;
    --nav-link-hover: #8AB6FF;
    --nav-link-hover-bg: rgba(78,141,255,0.10);

    --breadcrumb-link-color: #9AB2D5;
    --breadcrumb-link-hover: #8AB6FF;
    --breadcrumb-current-color: #EDF4FF;
    --breadcrumb-sep-color: #6E87AD;

    --scroll-top-bg: #4E8DFF;
    --scroll-top-color: #FFFFFF;
    --scroll-top-hover-bg: #3577E6;

    --content-link-color: #8AB6FF;
    --content-link-hover: #A596FF;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #8AB6FF;
    --content-btn-login-border: #4E8DFF;
    --content-btn-login-hover-bg: #112949;
    --content-btn-login-hover-text: #FFFFFF;
    --content-btn-register-bg: #7C6BFF;
    --content-btn-register-text: #FFFFFF;
    --content-btn-register-hover-bg: #6856F0;
    --content-btn-register-hover-text: #FFFFFF;

    --table-head-bg: #4E8DFF;
    --table-head-text: #FFFFFF;
    --table-row-even-bg: #112543;
    --table-row-hover: rgba(78, 141, 255, 0.05);

    --bonus-bar-bg: #163463;
    --bonus-bar-text: #FFFFFF;
    --bonus-bar-btn-bg: #7C6BFF;
    --bonus-bar-btn-text: #FFFFFF;

    --popup-bg: #0A1A31;
    --popup-title-color: #FFFFFF;
    --popup-subtitle-color: #B2C4E3;
    --popup-btn-bg: #4E8DFF;
    --popup-btn-text: #FFFFFF;
    --popup-card-bg: #122746;
    --popup-card-border: #7C6BFF;
    --popup-bonus-name-color: #FFFFFF;
    --popup-bonus-amount-color: #9F92FF;

    --header-bg: #081425;
    --header-border: #1E375B;
    --header-shadow: 0 2px 14px rgba(0,0,0,0.34);
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --games-title-color: #FFFFFF;
    --games-card-bg: #0E2140;
    --games-card-radius: 14;
    --games-arrow-bg: #4E8DFF;
    --games-arrow-color: #FFFFFF;

    --payments-title-color: #FFFFFF;
    --payments-card-bg: #0E2140;
    --payments-card-radius: 10px;
    --payments-name-color: #B2C4E3;

    --help-title-color: #FFFFFF;
    --help-card-bg: #0E2140;
    --help-card-border: #27446D;
    --help-card-radius: 14;
    --help-btn-bg: #4E8DFF;
    --help-btn-text: #FFFFFF;
    --help-btn-hover: #3577E6;
}

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

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

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

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

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

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

.Kc4rlcu a {
    text-decoration: none;
}

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

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

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

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

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

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

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

.PsclztJ:hover .Zi8XmpS {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.NvslCYs .lwNaodx:hover {
    transform: translateY(-1px);
}

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

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

body.N0Mmhxz {
    overflow: hidden;
}

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

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

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

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

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

/* Mobile dropdown */
.aTBZYb3 .nhOEg0v {
    display: flex;
    flex-direction: column;
}

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

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

.aTBZYb3 .ar35sj7 {
    display: block;
    padding: 0 0 0 1rem;
}

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

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

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

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

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

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

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

.LWbNkAh + .heTdeYr {
    padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.spS6n5x a:not(.npcNCJ5):not(.tHOAB4Q):hover {
    color: var(--content-link-hover, var(--primary-hover));
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.WKdnyCq {
    text-align: left;
}

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

.uO8CVMk {
    text-align: right;
}

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

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

.gkZpOb9 { grid-template-columns: repeat(2, 1fr); }
.zhmZXXX { grid-template-columns: repeat(3, 1fr); }
.GNexXHQ { grid-template-columns: repeat(4, 1fr); }

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

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

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

.X9ddlIo .JaTqa7t {
    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));
}

.X9ddlIo .JaTqa7t: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);
}

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

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

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

.glgGCQ8.iPixU5f .MGCY7pl svg {
    transform: rotate(180deg);
}

.rqpnKbr { flex: 1; }

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

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

.glgGCQ8.iPixU5f .REeAkIZ {
    display: block;
}

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

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

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

.REeAkIZ li.GcUUmXF {
    padding-left: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lyzfv0L p:last-child, .pgXhJUv p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.NXyPphz.cLi3o3V {
    transform: translate(-50%, 0);
}

.o6wSQ09 {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

.Uyv6VhU.cLi3o3V {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iqc2JfI.cLi3o3V {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

.yzbc3E2 {
    margin: 0;
}

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

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

.mkq4tfB {
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

    .Kc4rlcu,
    .MqkY96L {
        display: none;
    }

    .NOlfhSq {
        display: block;
    }

    .NvslCYs {
        display: flex;
    }

    .aTBZYb3 {
        display: flex;
    }

    .heTdeYr {
        padding: 2rem 0;
    }

    .kREMJDZ {
        padding: 0 1rem;
    }

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

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

    .gkZpOb9,
    .zhmZXXX,
    .GNexXHQ {
        grid-template-columns: 1fr;
    }

    .JB94LT0 img,
    .l1bUceH img {
        margin: 0 auto;
    }

    .X9ddlIo {
        gap: 0.8rem;
    }

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

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

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

    .NXyPphz.cLi3o3V {
        transform: translateY(0);
    }

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

}

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

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

    .WkmnmCD {
        height: 30px;
    }

    .NvslCYs .lwNaodx {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

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

    .heTdeYr {
        padding: 1.5rem 0;
    }

    .kREMJDZ {
        padding: 0 0.75rem;
    }

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

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

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

    .hV2MPGC {
        font-size: 0.85rem;
    }

    .o4WPUYS {
        font-size: 0.72rem;
    }

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

    .jecHgVY {
        font-size: 1.35rem;
    }

    .CavzQVI {
        font-size: 1.2rem;
    }

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

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

/* ===== Exit-intent popup ===== */
.GHuiLTw {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.GHuiLTw.CQHzaeR {
    display: flex;
    animation: exitPopupFade 0.28s ease-out;
}

.OKZeBL1 {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 28, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.osGQ5P3 {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    animation: exitPopupIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.JPt2hfS {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: #4a5568;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    z-index: 2;
}

.JPt2hfS:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
    transform: rotate(90deg);
}

.JPt2hfS:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.TNcVFYt {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a5a00;
    background: linear-gradient(135deg, #ffe27a 0%, #ffc042 100%);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255, 192, 66, 0.4);
}

.NNWofZV {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9680b;
    animation: exitPopupPulse 1.4s ease-in-out infinite;
}

.CPRO9Aa {
    margin-bottom: 1.1rem;
}

.ixfJKsp {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    margin-bottom: 0.9rem;
}

.UXaMbMH {
    max-width: 180px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.w6m5qVJ {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.mOmKLFm {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.KoQKdIh {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 55%, #3c82d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.FVJ7YiL {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.yicqC6W {
    margin: 0.55rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trSMWo7 {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, rgba(1, 47, 111, 0.05) 0%, rgba(1, 47, 111, 0.02) 100%);
    border: 1px dashed rgba(1, 47, 111, 0.28);
    border-radius: var(--radius-md);
}

.IVrqx9P {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
}

.h6rQoUj {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.gJAAPuW {
    font-family: ui-monospace, 'Cascadia Code', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: #ffffff;
    border: 1.5px solid rgba(1, 47, 111, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.9rem;
    min-width: 120px;
    text-align: center;
}

.RKmMTgC {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--primary);
    background: #ffffff;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.RKmMTgC:hover:not(:disabled) {
    background: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 3px 10px rgba(1, 47, 111, 0.25);
}

.RKmMTgC:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.RKmMTgC:disabled {
    cursor: default;
    pointer-events: none;
}

.RKmMTgC.iJKHVl8 {
    background: #0d8050;
    border-color: #0d8050;
    color: #fff;
}

.EX0z9lb {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    text-align: left;
}

.EX0z9lb li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.EX0z9lb li svg {
    flex-shrink: 0;
    color: #0d8050;
}

.uLm8O2w {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--on-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(1, 47, 111, 0.35);
    transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.uLm8O2w:hover {
    color: var(--on-primary);
    text-decoration: none;
    filter: brightness(1.08);
    box-shadow: 0 14px 32px rgba(1, 47, 111, 0.45);
    transform: translateY(-2px);
}

.uLm8O2w:focus-visible {
    outline: 2px solid #ffc042;
    outline-offset: 3px;
}

.EYhWBWX {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    color: var(--text-soft);
    line-height: 1.4;
}

@keyframes exitPopupFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes exitPopupIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes exitPopupPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.35); opacity: 0.65; }
}

body.gauR8EJ {
    overflow: hidden;
}

@media (max-width: 480px) {
    .osGQ5P3 {
        padding: 1.75rem 1.25rem 1.25rem;
        border-radius: 14px;
    }

    .KoQKdIh { font-size: 2.2rem; }
    .FVJ7YiL   { font-size: 1.1rem; }

    .uLm8O2w {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }

    .gJAAPuW {
        font-size: 1rem;
        min-width: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .GHuiLTw.CQHzaeR,
    .osGQ5P3,
    .NNWofZV {
        animation: none;
    }
    .JPt2hfS:hover { transform: none; }
    .uLm8O2w:hover   { transform: none; }
}


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

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

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