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

:root {
    --primary: #a855f7;
    --primary-hover: #c084fc;
    --primary-rgb: 168, 85, 247;
    --accent: #06b6d4;
    --accent-hover: #22d3ee;
    --accent-rgb: 6, 182, 212;
    --on-primary: #ffffff;

    --bg: #030712;
    --surface: #111827;
    --surface-muted: #1f2937;
    --footer-bg: #030712;

    --text: #f9fafb;
    --text-muted: #9ca3af;
    --text-soft: #d1d5db;

    --border: #374151;

    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --font-family: 'CustomFont', Arial, Helvetica, sans-serif;
    --line-height: 1.7;

    --blockquote-border: #a855f7;
    --blockquote-bg: #1f2937;
    --blockquote-text: #d1d5db;

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

    --nav-link-color: #9ca3af;
    --nav-link-hover: #a855f7;
    --nav-link-hover-bg: rgba(168, 85, 247, 0.08);

    --breadcrumb-link-color: #9ca3af;
    --breadcrumb-link-hover: #a855f7;
    --breadcrumb-current-color: #f9fafb;
    --breadcrumb-sep-color: #d1d5db;

    --scroll-top-bg: #111827;
    --scroll-top-color: #a855f7;
    --scroll-top-hover-bg: #a855f7;

    --content-link-color: #a855f7;
    --content-link-hover: #c084fc;

    --content-btn-login-bg: transparent;
    --content-btn-login-text: #a855f7;
    --content-btn-login-border: #a855f7;
    --content-btn-login-hover-bg: #a855f7;
    --content-btn-login-hover-text: #ffffff;
    --content-btn-register-bg: #a855f7;
    --content-btn-register-text: #ffffff;
    --content-btn-register-hover-bg: #c084fc;
    --content-btn-register-hover-text: #ffffff;

    --header-btn1-bg: transparent;
    --header-btn1-text: #a855f7;
    --header-btn1-border: #a855f7;
    --header-btn1-hover-bg: #a855f7;
    --header-btn1-hover-text: #ffffff;
    --header-btn2-bg: #a855f7;
    --header-btn2-text: #ffffff;
    --header-btn2-hover-bg: #c084fc;
    --header-btn2-hover-text: #ffffff;

    --table-head-bg: #a855f7;
    --table-head-text: #ffffff;
    --table-row-odd-bg: #111827;
    --table-row-even-bg: #1f2937;
    --table-row-hover: rgba(168, 85, 247, 0.05);
    --table-body-text: #9ca3af;

    --section-bg: #111827;
    --section-border: #374151;
    --section-radius: 16px;
    --section-shadow: 0 2px 16px rgba(168,85,247,0.08);

    --bonus-bar-bg: #1f2937;
    --bonus-bar-text: #f9fafb;
    --bonus-bar-accent: #a855f7;
    --bonus-bar-btn-bg: #06b6d4;
    --bonus-bar-btn-text: #ffffff;

    --author-bg: #111827;
    --author-border: #374151;
    --author-name-color: #f9fafb;
    --author-name-hover: #c084fc;
    --author-bio-color: #9ca3af;

    --header-bg: #111827;
    --header-border: #374151;
    --header-shadow: 0 1px 8px rgba(168,85,247,0.1);
    /* 0 в max-width схлопывает ширину img; «без ограничения» в настройках = CSS none */
    --header-logo-height: 42px;
    --header-logo-max-width: none;

    --footer-text: #d1d5db;
    --footer-text-muted: #9ca3af;
    --footer-heading-color: #f3f4f6;
    --footer-link-color: #9ca3af;
    --footer-link-hover: #c084fc;
    --footer-border: rgba(255,255,255,0.06);
    --footer-copy-color: #6b7280;

    --payments-title-color: #f9fafb;
    --payments-card-bg: #1f2937;
    --payments-card-radius: 10px;
    --payments-name-color: #d1d5db;

    --reviews-card-bg: #1f2937;
    --reviews-card-border: #374151;
    --reviews-name-color: #f9fafb;
    --reviews-star-color: #f59e0b;
    --reviews-date-color: #9ca3af;
    --reviews-text-color: #d1d5db;

    --casino-title-color: #1e293b;
    --casino-card-bg: #ffffff;
    --casino-card-border: #e2e8f0;
    --casino-card-radius: 12px;
    --casino-logo-bg: #1a365d;
    --casino-rating-color: #22c55e;
    --casino-bonus-color: #22c55e;
    --casino-btn-bg: #22c55e;
    --casino-btn-text: #ffffff;
    --casino-btn-hover-bg: #16a34a;

    --toc-header-bg: #1f2937;
    --toc-header-text: #f9fafb;
    --toc-icon-color: #9ca3af;
    --toc-link-color: #d1d5db;
    --toc-link-hover: #c084fc;
    --toc-border: #374151;

    --faq-question-color: #f9fafb;
    --faq-answer-color: #d1d5db;
    --faq-border: #374151;
    --faq-hover-bg: #1f2937;
    --faq-icon-color: #a855f7;
}

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

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

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

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

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

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

.JVF1Pko a {
    text-decoration: none;
}

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

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

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

.ZYQAEWz > a,
.ZYQAEWz > span {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--nav-link-color, var(--text-muted));
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

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

.ZYQAEWz:hover .N0rqpfC {
    display: block;
}

.N0rqpfC a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--nav-link-color, var(--text-muted));
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.N0rqpfC a:hover {
    background: var(--surface-muted);
    color: var(--nav-link-hover, var(--primary));
}

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

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

.Tj7OPfm .NpYJ7oY {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    line-height: 1.3;
    box-sizing: border-box;
}

.Tj7OPfm .b2MW3sU {
    background: var(--header-btn1-bg);
    color: var(--header-btn1-text);
    border-color: var(--header-btn1-border);
}

.Tj7OPfm .b2MW3sU:hover {
    background: var(--header-btn1-hover-bg);
    color: var(--header-btn1-hover-text);
    border-color: var(--header-btn1-hover-bg);
}

.Tj7OPfm .mYG98l1 {
    background: var(--header-btn2-bg);
    color: var(--header-btn2-text);
    border-color: var(--header-btn2-bg);
}

.Tj7OPfm .mYG98l1:hover {
    background: var(--header-btn2-hover-bg);
    color: var(--header-btn2-hover-text);
    border-color: var(--header-btn2-hover-bg);
}

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

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

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

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

/* Mobile header: action buttons row (legacy, hidden in mirror-1) */
.WeUbFae {
    display: none !important;
    flex: 0 0 auto;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

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

.WeUbFae .vnEOMP6:hover {
    transform: translateY(-1px);
}

/* Mobile nav overlay (disabled — dropdown mode) */
.XOtIi44 {
    display: none !important;
    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;
}

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

body.S5gHADc {
    overflow: hidden;
}

/* Mobile navigation panel — dropdown overlay from top */
.AoyTI9X {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
    flex-direction: column;
    gap: 0;
    z-index: 998;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.3s;
    overflow-y: auto;
    max-height: 75vh;
}

.AoyTI9X.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    padding: 0.75rem 1rem 1rem;
}

.ShCSIR8 {
    display: none;
}

.F2cWh2F {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.F2cWh2F > a:not(.NpYJ7oY),
.F2cWh2F > .KTqlYi6 > .ciwwgjm {
    display: flex;
    align-items: center;
    padding: 0.7rem 0.85rem;
    color: var(--nav-link-color, var(--text));
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
    position: relative;
}

.F2cWh2F > a:not(.NpYJ7oY):hover,
.F2cWh2F > a.active,
.F2cWh2F > .KTqlYi6 > .ciwwgjm:hover,
.F2cWh2F > .KTqlYi6 > .ciwwgjm.active {
    color: var(--nav-link-hover, var(--primary));
    background: var(--nav-link-hover-bg, rgba(var(--primary-rgb, 99, 102, 241), 0.07));
    text-decoration: none;
    transform: translateX(2px);
}

.F2cWh2F > a:not(.NpYJ7oY):active {
    transform: translateX(2px) scale(0.98);
}

.I9Vu7BN {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.I9Vu7BN .NpYJ7oY {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.I9Vu7BN .NpYJ7oY:active {
    transform: scale(0.97);
}

.I9Vu7BN .b2MW3sU {
    background: var(--header-btn1-bg);
    color: var(--header-btn1-text);
    border: 1.5px solid var(--header-btn1-border);
}

.I9Vu7BN .b2MW3sU:hover {
    background: var(--header-btn1-hover-bg);
    color: var(--header-btn1-hover-text);
    border-color: var(--header-btn1-hover-bg);
}

.I9Vu7BN .mYG98l1 {
    background: var(--header-btn2-bg);
    color: var(--header-btn2-text);
    border: 1.5px solid var(--header-btn2-bg);
}

.I9Vu7BN .mYG98l1:hover {
    background: var(--header-btn2-hover-bg);
    color: var(--header-btn2-hover-text);
    border-color: var(--header-btn2-hover-bg);
}

/* Mobile dropdown */
.AoyTI9X .KTqlYi6 {
    display: flex;
    flex-direction: column;
}

.AoyTI9X .ciwwgjm {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    text-align: left;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.AoyTI9X .ciwwgjm:hover,
.AoyTI9X .ciwwgjm.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 99, 102, 241), 0.07);
    text-decoration: none;
    transform: translateX(2px);
}

.AoyTI9X .R4NOGFp {
    display: block;
    padding: 0.15rem 0 0.35rem 1.2rem;
}

.AoyTI9X .R4NOGFp a {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.AoyTI9X .R4NOGFp a:hover,
.AoyTI9X .R4NOGFp a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 99, 102, 241), 0.05);
    text-decoration: none;
    transform: translateX(2px);
}

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

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

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

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

.mYG98l1: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
   ================================================================ */
.MX10SSq {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.6rem 1.5rem 0;
    box-sizing: border-box;
}

.MX10SSq .nfIBszc {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.55rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0.35rem;
    list-style: none;
    margin: 0;
    font-size: 0.85rem;
    width: 100%;
    box-sizing: border-box;
}

.MX10SSq + .qsSAVXt {
    padding-top: 0.75rem;
}

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

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

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

.YWHU2Go {
    color: var(--breadcrumb-sep-color, var(--text-soft));
    opacity: 0.5;
    user-select: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.YWHU2Go svg {
    display: block;
}

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

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

.HXhCBON {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lQ5WJCd {
    background: var(--section-bg, var(--surface));
    border: 1px solid var(--section-border, var(--border));
    border-radius: var(--section-radius, var(--radius-lg));
    padding: 1rem;
    box-shadow: var(--section-shadow, 0 2px 12px rgba(0,0,0,0.06));
}

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

.lQ5WJCd h2 {
    color: var(--text);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lQ5WJCd h2::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--primary);
    opacity: 0.35;
    border-radius: 1px;
}

/* Превью стилей и контент с обычным <hr> (не только be-divider из редактора) */
.lQ5WJCd hr,
.lQ5WJCd hr.wVySmBc {
    border: none;
    height: 2px;
    background: var(--primary);
    opacity: 0.35;
    border-radius: 1px;
    margin: 1.25rem 0;
}

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

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

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

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

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

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

.lQ5WJCd .R3Uhc9R a:not(.NpYJ7oY):hover {
    text-decoration: none;
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.CYmmWPX {
    text-align: left;
}

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

.Myq52sd {
    text-align: right;
}

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

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

.MJfGkai { grid-template-columns: repeat(2, 1fr); }
.Bppl1GU { grid-template-columns: repeat(3, 1fr); }
.y1I0D8S { grid-template-columns: repeat(4, 1fr); }

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

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

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

.e2kuMxf .b2MW3sU {
    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));
}

.e2kuMxf .b2MW3sU: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);
}

.e2kuMxf .mYG98l1: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
   ================================================================ */
.pFSPhKs {
    margin: 1.5rem 0;
    border: none;
    border-radius: 0;
    background: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.EQrDXsK {
    width: auto;
    padding: 0.6rem 1.75rem;
    background: var(--toc-header-bg, var(--primary));
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--toc-header-text, #fff);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.25s, box-shadow 0.25s, transform 0.15s, width 0.3s, border-radius 0.3s;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.25);
    letter-spacing: 0.02em;
}

.EQrDXsK:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-1px);
}

.EQrDXsK:active {
    transform: translateY(0);
}

.pFSPhKs.HbZEGJj .EQrDXsK {
    width: 100%;
    background: var(--primary-hover);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: none;
    justify-content: center;
}

.pFSPhKs.HbZEGJj .EQrDXsK svg {
    transform: rotate(180deg);
}

.nEoYn0P { flex: none; }

.EQrDXsK svg {
    flex-shrink: 0;
    transition: transform 0.25s;
    width: 14px;
    height: 14px;
    stroke: var(--toc-icon-color, #fff);
}

.R3Uhc9R {
    display: none;
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem;
    background: var(--surface-muted);
    border: 1px solid var(--toc-border, var(--border));
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: tocSlideDown 0.3s ease;
}

@keyframes tocSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pFSPhKs.HbZEGJj .R3Uhc9R {
    display: block;
}

.R3Uhc9R ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.R3Uhc9R li,
.lQ5WJCd .R3Uhc9R ol li {
    margin-bottom: 0;
    padding: 0;
    font-size: 0;
}

.R3Uhc9R li::marker {
    content: none;
}

.R3Uhc9R li.Avs93cY {
    padding-left: 0;
}

.R3Uhc9R li.Avs93cY a {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    background: var(--surface);
    border-color: var(--border);
    color: var(--text-muted);
}

.R3Uhc9R a {
    display: inline-block;
    width: 100%;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--toc-link-color, var(--text));
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--toc-border, var(--border));
    border-radius: var(--radius-md);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease, transform 0.25s ease;
    line-height: 1.4;
    box-sizing: border-box;
}

.R3Uhc9R a:hover {
    color: var(--toc-link-hover, var(--primary));
    text-decoration: none;
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.1);
    transform: translateY(-2px);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.xKRHAD0 {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cvJwuga {
    border: 1px solid var(--faq-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.cvJwuga:has(.mXPSw7g.active) {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.08);
}

.mXPSw7g {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    font-family: inherit;
    line-height: inherit;
    text-align: left;
    color: var(--faq-question-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: color 0.2s, background 0.2s;
}

.mXPSw7g:hover {
    background: var(--faq-hover-bg);
    color: var(--primary);
}

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

.mXPSw7g .c9rBr0j,
.mXPSw7g h3,
.mXPSw7g span {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
    text-align: left;
    min-width: 0;
    line-height: 1.4;
}

.mXPSw7g h3.c9rBr0j {
    margin-top: 0;
    margin-bottom: 0;
}

.vpQFUUc {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--faq-icon-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.25s, color 0.25s;
    position: relative;
}

.vpQFUUc::before,
.vpQFUUc::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.vpQFUUc::before {
    width: 10px;
    height: 2px;
}

.vpQFUUc::after {
    width: 2px;
    height: 10px;
}

.vpQFUUc svg {
    display: none;
}

.mXPSw7g.active .vpQFUUc {
    background: var(--primary);
    color: var(--on-primary, #fff);
}

.mXPSw7g.active .vpQFUUc::after {
    transform: rotate(90deg);
    opacity: 0;
}

.kdyEBS8 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.kdyEBS8.active {
    max-height: 2000px;
}

.kdyEBS8::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--faq-border);
    margin: 0 1.25rem;
}

.FKz1RLo {
    padding: 1rem 1.25rem 1.25rem;
    color: var(--faq-answer-color);
    line-height: 1.7;
    font-size: 0.92rem;
}

.FKz1RLo p, .kdyEBS8 p {
    margin: 0 0 0.65em;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

.FKz1RLo p:last-child, .kdyEBS8 p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   REVIEWS SHORTCODE
   ================================================================ */
.ZIFXIRy {
    margin: 1.5rem 0;
}

/* ── Carousel layout ── */
.ZIFXIRy[data-layout="carousel"] .TFACmS1 {
    position: relative;
}

.PtY1GEf {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
}

.PtY1GEf::-webkit-scrollbar {
    display: none;
}

.ZyCjw4u {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--on-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.15s;
}

.ZyCjw4u:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.mzTtDsn { left: -12px; }
.Fg9vGIz { right: -12px; }

.PtY1GEf .t0x7bi1 {
    flex: 0 0 320px;
    min-width: 280px;
}

/* ── Grid layout ── */
.DAmHFO9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── Card ── */
.t0x7bi1 {
    position: relative;
    background: var(--reviews-card-bg, var(--surface));
    border: 1px solid var(--reviews-card-border, var(--border));
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.t0x7bi1:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lm8sTI8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.yJrn0t2 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--reviews-name-color, var(--text));
    flex: 1;
    min-width: 0;
}

.ziFVVop {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.ziFVVop svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.TjIKABi {
    font-size: 0.78rem;
    color: var(--reviews-date-color, var(--text-soft));
    margin-top: -0.2rem;
}

.TjIKABi:empty {
    display: none;
}

.rhpyMqv {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--reviews-text-color, var(--text-muted));
}

/* ── Reviews responsive ── */
@media (max-width: 768px) {
    .DAmHFO9 {
        grid-template-columns: 1fr;
    }

    .PtY1GEf .t0x7bi1 {
        flex: 0 0 calc(100% - 8px);
        min-width: 0;
        scroll-snap-align: center;
    }
    .PtY1GEf {
        scroll-snap-type: x mandatory;
    }

    .ZyCjw4u {
        width: 30px;
        height: 30px;
    }

    .mzTtDsn { left: -6px; }
    .Fg9vGIz { right: -6px; }
}

/* ================================================================
   AUTHOR BLOCK — compact / miniature
   ================================================================ */
.c0r6o9N {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 1rem;
    background: var(--author-bg, var(--surface));
    border: 1px solid var(--author-border, var(--border));
    border-radius: var(--radius-lg);
}

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

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

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

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

.vl2upYD a:hover {
    color: var(--author-name-hover, var(--primary));
}

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

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

/* ================================================================
   TABLES
   ================================================================ */
.LTiOIKU, .t7GduEp {
    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(--table-row-odd-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);
}

table tbody td,
table tbody th {
    color: var(--table-body-text);
}

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

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

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

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

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

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

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

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

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

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

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

/* ================================================================
   BONUS BAR (sticky bottom bar)
   ================================================================ */
.hlOI8Er {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, calc(100% + 80px));
    width: 94%;
    max-width: var(--container-max);
    z-index: 9999;
    background: var(--bonus-bar-bg);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.hlOI8Er.HQ3YJRJ {
    transform: translate(-50%, 0);
}

.bvaR3cy {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bonus-bar-accent), transparent);
    opacity: 0.7;
}

.Sz1zlPp {
    flex-shrink: 0;
}

.Sz1zlPp img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

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

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

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

.BKuE7iK {
    flex-shrink: 0;
    padding: 0.65rem 1.8rem;
    background: var(--bonus-bar-btn-bg);
    color: var(--bonus-bar-btn-text) !important;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: filter 0.2s, transform 0.15s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.BKuE7iK:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hlOI8Er {
        bottom: 12px;
        width: 96%;
        padding: 0.7rem 1rem;
        gap: 0.7rem;
        border-radius: 14px;
    }
    .Sz1zlPp img { width: 38px; height: 38px; }
    .M9jGWU5 { font-size: 0.85rem; }
    .BKuE7iK { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .sgXy2zi { display: none; }
    .Sz1zlPp img { width: 32px; height: 32px; }
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.iZo746M {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--scroll-top-bg, var(--surface));
    color: var(--scroll-top-color, var(--primary));
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease,
                background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    z-index: 999;
}

.iZo746M svg {
    transition: transform 0.25s ease;
}

.iZo746M.HQ3YJRJ {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.iZo746M:hover {
    background: var(--scroll-top-hover-bg, var(--primary));
    color: var(--on-primary);
    border-color: var(--scroll-top-hover-bg, var(--primary));
    box-shadow: 0 4px 16px rgba(var(--primary-rgb, 99, 102, 241), 0.25);
}

.iZo746M:hover svg {
    transform: translateY(-2px);
}

.iZo746M:active {
    transform: scale(0.93);
}

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

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

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

.g5F4kJ7 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    align-self: center;
}

.lsxhg8n {
    margin: 0;
}

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

.MtuirMh {
    flex: 0 1 420px;
    min-width: 0;
}

.FfplL3u {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
    flex: 1 1 auto;
    margin-left: auto;
    align-self: flex-end;
}

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

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

.NCcbtVc {
    flex: 0 0 auto;
}

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

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

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

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

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

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

.jDSMZnm {
    margin: 0 auto;
}

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


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

    .JVF1Pko,
    .Tj7OPfm {
        display: none;
    }

    .mzGIgPS {
        display: block;
    }

    .AoyTI9X {
        display: flex;
    }

    .qsSAVXt {
        padding: 1rem 0;
    }

    .HXhCBON {
        padding: 0 1rem;
    }

    .MX10SSq {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .lQ5WJCd {
        padding: 1.5rem 1.5rem;
    }

    .lQ5WJCd h1 { font-size: 1.75rem; }
    .lQ5WJCd h2 { font-size: 1.35rem; }
    .lQ5WJCd h3 { font-size: 1.15rem; }
    .lQ5WJCd h4 { font-size: 1.05rem; }
    .lQ5WJCd p,
    .lQ5WJCd ul li,
    .lQ5WJCd ol li { font-size: 1rem; }

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

    .MJfGkai,
    .Bppl1GU,
    .y1I0D8S {
        grid-template-columns: 1fr;
    }

    .v2iEBQC img,
    .jBHAtjC img {
        margin: 0 auto;
    }

    .e2kuMxf {
        gap: 0.8rem;
    }

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

    .R3Uhc9R {
        padding: 1rem;
    }

    .EQrDXsK {
        font-size: 0.82rem;
        padding: 0.5rem 1.25rem;
    }

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

    .iZo746M {
        bottom: 20px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

}

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

    .teJLpmV {
        padding: 0 1rem;
    }

    .MtuirMh {
        flex-basis: auto;
    }

    .FfplL3u {
        justify-content: flex-start;
        align-self: auto;
        gap: 10px 15px;
        flex-basis: 100%;
        margin-left: 0;
    }
}

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

    .lyztDNf {
        height: 30px;
    }

    .AoyTI9X.active {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .qsSAVXt {
        padding: 0.75rem 0;
    }

    .HXhCBON {
        padding: 0 0.75rem;
    }

    .MX10SSq {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .lQ5WJCd {
        padding: 1.25rem 1rem;
    }

    .lQ5WJCd h1 { font-size: 1.5rem; }
    .lQ5WJCd h2 { font-size: 1.2rem; }
    .lQ5WJCd h3 { font-size: 1.05rem; }
    .lQ5WJCd h4 { font-size: 1rem; }

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

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

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


/* === Shortcode Styles === */
/* Shortcode: payments */
.DIFotQi{margin:2rem 0}.vXkADtt{font-size:1.25rem;font-weight:700;margin-bottom:1.2rem;color:var(--payments-title-color,var(--text))}.VVTg49P{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}.FC5DARX{display:inline-flex;align-items:center;gap:10px;padding:10px 18px 10px 10px;background:var(--payments-card-bg,var(--surface));border:1px solid var(--payments-card-border,var(--border));border-radius:var(--payments-card-radius,50px);transition:all .35s cubic-bezier(.4,0,.2,1);box-shadow:0 1px 4px rgba(0,0,0,.04);cursor:default}.FC5DARX:hover{transform:translateY(-2px);box-shadow:0 4px 20px var(--payments-glow,rgba(37,99,235,.15));border-color:var(--payments-hover-border,var(--primary))}.OedpJgf{width:44px;height:30px;display:flex;align-items:center;justify-content:center;flex-shrink:0;background:var(--payments-icon-bg,var(--surface-muted));border-radius:22px;padding:4px 8px}.OedpJgf img{max-width:100%;max-height:100%;object-fit:contain}.mWoRJGe{font-size:.88rem;font-weight:600;white-space:nowrap;color:var(--payments-name-color,var(--text-muted))}@media(max-width:768px){.VVTg49P{gap:8px}.FC5DARX{padding:8px 14px 8px 8px}}@media(max-width:480px){.OedpJgf{width:36px;height:24px}.mWoRJGe{font-size:.8rem}.FC5DARX{padding:6px 10px 6px 6px;gap:8px}}

/* Shortcode: payment-grid */
.sp1qpMb{margin:2rem 0}.Nw8J56x{font-size:1.25rem;font-weight:700;margin-bottom:1.2rem;color:var(--pgrid-title-color,var(--text))}.fTQeNtK{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.FsbNQQV{display:flex;align-items:center;gap:14px;padding:14px 16px;position:relative;overflow:hidden;background:var(--pgrid-card-bg,var(--surface));border:1px solid var(--pgrid-card-border,var(--border));border-radius:var(--pgrid-card-radius,14px);text-decoration:none!important;cursor:pointer;transition:all .35s cubic-bezier(.4,0,.2,1);box-shadow:0 2px 8px rgba(0,0,0,.05)}.FsbNQQV::after{content:"";position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--pgrid-accent,var(--primary)),transparent);transform:scaleX(0);transform-origin:left;transition:transform .35s}.FsbNQQV:hover::after{transform:scaleX(1)}.FsbNQQV:hover{transform:translateY(-3px);box-shadow:0 8px 28px var(--pgrid-glow,rgba(37,99,235,.1));border-color:var(--pgrid-accent,var(--primary))}.h5UocQt{flex-shrink:0;width:48px;height:34px;display:flex;align-items:center;justify-content:center;background:var(--pgrid-icon-bg,var(--surface-muted));border-radius:10px;padding:4px}.h5UocQt img{max-width:100%;max-height:100%;object-fit:contain}.op6A9tZ{flex:1;min-width:0}.EplbiWR{font-size:.9rem;font-weight:600;display:block;color:var(--pgrid-name-color,var(--text))}.VmlZFLw{flex-shrink:0;width:22px;height:22px;color:var(--pgrid-arrow-color,var(--text-muted));opacity:.5;transition:all .3s}.FsbNQQV:hover .VmlZFLw{opacity:1;color:var(--pgrid-accent,var(--primary));transform:translateX(2px)}@media(max-width:768px){.fTQeNtK{grid-template-columns:repeat(2,1fr)}}@media(max-width:480px){.fTQeNtK{grid-template-columns:1fr;gap:10px}.FsbNQQV{padding:12px 14px}}