@font-face {
    font-family: 'ExoShell';
    src: url('fonts/exo2-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ExoShell';
    src: url('fonts/exo2-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ExoShell';
    src: url('fonts/exo2-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BitterShell';
    src: url('fonts/bitter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BitterShell';
    src: url('fonts/bitter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --sb-bg-deep: #141414;
    --sb-bg-panel: #1e1e1e;
    --sb-bg-rail: #252525;
    --sb-border: #3a3a3a;
    --sb-gold: #e8a849;
    --sb-gold-bright: #f5c842;
    --sb-orange: #e07020;
    --sb-text: #d4d4d4;
    --sb-text-dim: #8a8a8a;
    --sb-white: #f0ece4;
    --sb-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --sb-radius: 6px;
    --sb-font-ui: 'ExoShell', system-ui, sans-serif;
    --sb-font-display: 'BitterShell', Georgia, serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sb-font-ui);
    line-height: 1.55;
    color: var(--sb-text);
    background: var(--sb-bg-deep);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(232, 168, 73, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #181818 0%, #121212 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--sb-gold);
    text-decoration: none;
}

/* ── Site chrome ── */
.sb-site-chrome {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--sb-bg-panel);
    border-bottom: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow);
}

.sb-chrome-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-brand-mark .sb-brand-img {
    height: 38px;
    width: auto;
}

.sb-brand-text {
    font-family: var(--sb-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sb-gold-bright);
    letter-spacing: 0.04em;
}

.sb-chrome-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    font-family: var(--sb-font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--sb-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.sb-btn:hover {
    transform: translateY(-1px);
}

.sb-btn-ghost {
    background: linear-gradient(180deg, #4a4035 0%, #3a3228 100%);
    color: var(--sb-white);
    border-color: #5a5040;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sb-btn-gold {
    background: linear-gradient(180deg, #f5c842 0%, #d4881a 100%);
    color: #1a1208;
    border-color: #b07010;
    box-shadow: 0 2px 8px rgba(232, 168, 73, 0.35);
}

.sb-btn-sm {
    padding: 7px 14px;
    font-size: 0.72rem;
}

/* ── Primary nav rail ── */
.sb-primary-rail {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sb-primary-rail::-webkit-scrollbar {
    display: none;
}

.sb-rail-list {
    display: flex;
    list-style: none;
    gap: 4px;
    padding: 6px 16px 8px;
    min-width: max-content;
}

.sb-rail-item {
    flex-shrink: 0;
}

.sb-rail-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: var(--sb-radius);
    border: 1px solid transparent;
    color: var(--sb-text-dim);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.sb-rail-link:hover {
    color: var(--sb-white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.sb-rail-link--active {
    color: var(--sb-gold-bright);
    background: rgba(232, 168, 73, 0.1);
    border-color: rgba(232, 168, 73, 0.3);
}

.sb-rail-glyph {
    display: flex;
    align-items: center;
}

.sb-nav-glyph {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ── Mobile drawer ── */
.sb-drawer-trigger {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--sb-gold);
    background: linear-gradient(180deg, #2a2520 0%, #1a1814 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.sb-drawer-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sb-gold-bright);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.sb-drawer-trigger[aria-expanded="true"] .sb-drawer-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sb-drawer-trigger[aria-expanded="true"] .sb-drawer-bar:nth-child(2) {
    opacity: 0;
}

.sb-drawer-trigger[aria-expanded="true"] .sb-drawer-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sb-drawer-scrim {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.72);
}

.sb-drawer-scrim.sb-scrim-visible {
    display: block;
}

.sb-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: var(--sb-bg-deep);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-bottom: 80px;
}

.sb-mobile-drawer.sb-drawer-open {
    transform: translateY(0);
}

.sb-drawer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sb-border);
    flex-wrap: wrap;
}

.sb-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--sb-border);
    background: var(--sb-bg-rail);
    color: var(--sb-white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.sb-drawer-brand .sb-brand-img {
    height: 32px;
    width: auto;
}

.sb-drawer-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.sb-drawer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
    padding: 16px;
}

.sb-drawer-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: var(--sb-radius);
    border: 1px solid var(--sb-border);
    background: var(--sb-bg-rail);
    color: var(--sb-text);
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background 0.15s;
}

.sb-drawer-tile:hover,
.sb-drawer-tile--active {
    background: rgba(232, 168, 73, 0.12);
    border-color: rgba(232, 168, 73, 0.35);
    color: var(--sb-gold-bright);
}

.sb-drawer-tile-icon .sb-nav-glyph {
    width: 32px;
    height: 32px;
}

/* ── Page frame ── */
.sb-page-frame {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px 40px;
}

.sb-trail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.8rem;
}

.sb-trail-link {
    color: var(--sb-text-dim);
}

.sb-trail-link:hover {
    color: var(--sb-gold);
}

.sb-trail-sep {
    color: var(--sb-border);
}

/* ── Hero carousel ── */
.sb-hero-carousel {
    position: relative;
    margin-bottom: 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(232, 168, 73, 0.25);
    background: #0e0e0e;
}

.sb-hero-track {
    position: relative;
}

.sb-hero-slide {
    display: none;
    position: relative;
}

.sb-hero-slide.sb-slide-active {
    display: block;
}

.sb-hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    min-height: 160px;
}

.sb-hero-media picture {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sb-hero-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
}

.sb-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
}

.sb-hero-title {
    font-family: var(--sb-font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--sb-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sb-hero-sub {
    font-size: 0.85rem;
    color: var(--sb-text-dim);
    margin-bottom: 14px;
}

.sb-hero-cta {
    display: inline-flex;
    padding: 11px 28px;
    background: linear-gradient(180deg, #f08030 0%, #c05010 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--sb-radius);
    border: 1px solid #a04008;
    box-shadow: 0 3px 12px rgba(224, 112, 32, 0.4);
    transition: transform 0.15s;
}

.sb-hero-cta:hover {
    transform: translateY(-2px);
    color: #fff;
}

.sb-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    color: var(--sb-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.sb-hero-arrow:hover {
    background: rgba(232, 168, 73, 0.3);
}

.sb-hero-arrow--prev { left: 10px; }
.sb-hero-arrow--next { right: 10px; }

.sb-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 14px;
    background: rgba(0, 0, 0, 0.4);
}

.sb-hero-dot {
    width: 28px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, width 0.2s;
}

.sb-hero-dot.sb-dot-active {
    background: var(--sb-orange);
    width: 40px;
}

.sb-hero-carousel[data-slide-count="1"] .sb-hero-arrow,
.sb-hero-carousel[data-slide-count="1"] .sb-hero-dots {
    display: none;
}

/* ── Game sections ── */
.sb-games-block {
    margin-bottom: 32px;
}

.sb-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sb-border);
}

.sb-block-title {
    font-family: var(--sb-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sb-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sb-show-all {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sb-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sb-show-all:hover {
    color: var(--sb-gold-bright);
}

.sb-games-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--sb-border) transparent;
    padding-bottom: 6px;
}

.sb-games-row {
    display: flex;
    gap: 12px;
    min-width: max-content;
}

.sb-slot-card {
    flex: 0 0 148px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sb-border);
    background: var(--sb-bg-rail);
}

.sb-slot-visual {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-slot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sb-slot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.2s;
}

.sb-slot-card:hover .sb-slot-overlay,
.sb-slot-card:focus-within .sb-slot-overlay {
    opacity: 1;
}

.sb-slot-btn {
    display: inline-flex;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid transparent;
    min-width: 100px;
    text-align: center;
    justify-content: center;
    transition: transform 0.12s;
}

.sb-slot-btn:hover {
    transform: scale(1.04);
}

.sb-slot-btn--play {
    background: linear-gradient(180deg, #f5c842 0%, #c87818 100%);
    color: #1a1008;
    border-color: #a06010;
}

.sb-slot-btn--demo {
    background: rgba(255, 255, 255, 0.12);
    color: var(--sb-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.sb-slot-name {
    padding: 8px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: var(--sb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── List blocks inside SEO text ── */
.list-container {
    margin: 14px 0;
}

.list-container ul,
.list-container ol {
    padding-left: 24px;
}

.list-container li {
    margin-bottom: 6px;
    font-size: 0.88rem;
}

/* ── Bonuses ── */
.sb-bonus-zone {
    margin-bottom: 36px;
}

.sb-page-bonus .sb-block-head {
    margin-bottom: 18px;
}

.sb-page-bonus .sb-block-title {
    position: relative;
    font-family: var(--sb-font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232, 168, 73, 0.15);
}

.sb-page-bonus .sb-block-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--sb-gold-bright), transparent);
    margin-top: 10px;
}

.sb-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.sb-bonus-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--sb-radius);
    overflow: hidden;
    border: 1px solid var(--sb-border);
    background: var(--sb-bg-panel);
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.sb-bonus-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 168, 73, 0.35);
    box-shadow: 0 16px 40px rgba(232, 168, 73, 0.12);
}

.sb-bonus-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sb-gold), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.sb-bonus-tile:hover::before {
    opacity: 1;
}

.sb-bonus-visual {
    background: linear-gradient(180deg, #1a1814 0%, #101010 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-bonus-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
}

.sb-bonus-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
    gap: 8px;
}

.sb-bonus-name {
    font-family: var(--sb-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sb-white);
}

.sb-bonus-desc {
    font-size: 0.84rem;
    color: var(--sb-text-dim);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sb-bonus-val {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.18), rgba(232, 168, 73, 0.08));
    border: 1px solid rgba(232, 168, 73, 0.3);
    border-radius: var(--sb-radius);
    font-family: var(--sb-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--sb-gold-bright);
}

.sb-bonus-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--sb-bg-rail);
    color: var(--sb-gold);
    border-radius: 999px;
    border: 1px solid rgba(232, 168, 73, 0.25);
}

.sb-bonus-terms {
    margin-top: auto;
    padding: 10px 12px;
    background: var(--sb-bg-rail);
    border-radius: var(--sb-radius);
    border-left: 2px solid rgba(232, 168, 73, 0.35);
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--sb-text-dim);
}

/* ── SEO text block ── */
.text-content {
    max-width: 920px;
    margin: 32px auto 40px;
    padding: 28px 28px 32px;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(232, 168, 73, 0.05) 0%, transparent 55%),
        var(--sb-bg-panel);
    border-radius: var(--sb-radius);
    border: 1px solid var(--sb-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.text-content h1 {
    position: relative;
    font-family: var(--sb-font-display);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--sb-white);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.text-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--sb-gold-bright), transparent);
    border-radius: 2px;
}

.text-content h2 {
    font-family: var(--sb-font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--sb-white);
    margin: 28px 0 12px;
    padding: 10px 0 10px 14px;
    border-left: 3px solid var(--sb-gold);
}

.text-content h3 {
    font-family: var(--sb-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sb-gold-bright);
    margin: 22px 0 10px;
}

.text-content p {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--sb-text-dim);
}

.text-content img {
    border-radius: 6px;
    margin: 16px 0;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border-radius: 6px;
    border: 1px solid var(--sb-border);
}

.text-content table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.text-content th,
.text-content td {
    padding: 10px 14px;
    border: 1px solid var(--sb-border);
    text-align: left;
}

.text-content th {
    background: rgba(232, 168, 73, 0.1);
    color: var(--sb-gold);
    font-weight: 600;
    white-space: nowrap;
}

.text-content ul,
.text-content ol {
    margin: 14px 0;
    padding-left: 24px;
}

.text-content li {
    margin-bottom: 6px;
    font-size: 0.88rem;
}

.text-content a {
    color: var(--sb-gold-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 168, 73, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.text-content a:hover {
    color: var(--sb-white);
    border-color: var(--sb-gold-bright);
}

.text-content blockquote {
    margin: 16px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--sb-gold);
    background: rgba(232, 168, 73, 0.06);
    font-style: italic;
    border-radius: 0 var(--sb-radius) var(--sb-radius) 0;
}

.text-content .list-container {
    margin: 16px 0 20px;
    padding: 16px 20px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
}

.text-content .list-container ul,
.text-content .list-container ol {
    margin: 0;
    padding-left: 22px;
}

.text-content .list-container li {
    margin-bottom: 8px;
    line-height: 1.65;
}

/* ── FAQ / HowTo ── */
.faq-wrapper { margin: 24px 0; }

.faq-item-block {
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--sb-bg-rail);
    transition: border-color 0.2s;
}

.faq-item-block:hover {
    border-color: rgba(232, 168, 73, 0.3);
}

.faq-question-block {
    padding: 14px 18px;
    background: rgba(232, 168, 73, 0.06);
    border-bottom: 1px solid var(--sb-border);
}

.faq-question-block strong {
    font-family: var(--sb-font-display);
    font-size: 0.92rem;
    color: var(--sb-white);
    line-height: 1.4;
}

.faq-answer-block {
    padding: 14px 18px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--sb-text-dim);
}

.howto-wrapper {
    margin: 24px 0;
    padding: 20px;
    background: var(--sb-bg-rail);
    border-radius: var(--sb-radius);
    border: 1px solid var(--sb-border);
}

.howto-steps-list {
    list-style: none;
    counter-reset: sb-step;
}

.howto-step-item {
    counter-increment: sb-step;
    padding: 16px 16px 16px 48px;
    margin-bottom: 10px;
    background: var(--sb-bg-panel);
    border-left: 3px solid var(--sb-gold);
    border-radius: 0 var(--sb-radius) var(--sb-radius) 0;
    position: relative;
}

.howto-step-item::before {
    content: counter(sb-step);
    position: absolute;
    left: 14px;
    top: 16px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sb-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sb-gold-bright);
    background: rgba(232, 168, 73, 0.12);
    border-radius: 50%;
}

.howto-step-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--sb-white);
}

.howto-step-item p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.65;
}

/* ── Payment methods ── */
.sb-pay-zone {
    margin: 32px 0;
}

.sb-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.sb-pay-item {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid var(--sb-border);
    background: var(--sb-bg-rail);
    text-align: center;
}

.sb-pay-img {
    max-height: 36px;
    width: auto;
    margin: 0 auto 8px;
    object-fit: contain;
}

.sb-pay-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sb-text-dim);
}

/* ── App table ── */
.sb-app-sheet {
    max-width: 720px;
    margin: 20px auto 28px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.45) 0%, rgba(232, 168, 73, 0.12) 50%, rgba(224, 112, 32, 0.3) 100%);
    border-radius: calc(var(--sb-radius) + 2px);
    box-shadow: 0 20px 60px rgba(232, 168, 73, 0.1);
}

.sb-app-sheet .app-info-table-container {
    border-radius: var(--sb-radius);
    border: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232, 168, 73, 0.12) 0%, transparent 55%),
        var(--sb-bg-panel);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-info-table-wrapper { margin: 20px 0; }

.sb-app-sheet.app-info-table-wrapper {
    margin: 20px auto 28px;
}

.app-info-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.app-info-icon-col {
    width: 52px;
}

.app-info-value-col {
    width: auto;
}

.sb-app-sheet .app-info-table tbody tr:first-child td {
    border-bottom: 1px solid var(--sb-border);
}

.sb-app-sheet .app-info-table tbody tr:first-child .app-info-label-cell {
    display: none;
}

.sb-app-sheet .app-info-table tbody tr:first-child .app-info-value-cell {
    padding: 28px 24px 24px;
    text-align: center;
}

.sb-app-sheet .app-info-table tbody tr:not(:first-child):not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sb-app-sheet .app-info-table tbody tr:not(:first-child):not(:last-child):hover {
    background: rgba(232, 168, 73, 0.04);
}

.app-info-row {
    border-bottom: 1px solid var(--sb-border);
}

.sb-app-sheet .app-info-row {
    border-bottom: none;
}

.app-info-label-cell,
.app-info-value-cell {
    padding: 14px 18px;
    vertical-align: middle;
    color: var(--sb-text-dim);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.sb-app-sheet .app-info-label-cell {
    width: 52px;
    text-align: center;
    padding-left: 20px;
    vertical-align: top;
    padding-top: 16px;
}

.sb-app-sheet .app-info-value-cell {
    width: auto;
}

.sb-app-sheet .app-info-table tbody tr:not(:first-child):not(:last-child) .app-info-value-cell {
    color: var(--sb-text);
    font-weight: 500;
}

.sb-app-sheet .app-info-table tbody tr:nth-child(2) .app-info-value-cell {
    font-size: 0.84rem;
    line-height: 1.65;
    text-align: left;
}

.sb-app-sheet .app-info-table tbody tr:last-child .app-info-label-cell {
    display: none;
}

.sb-app-sheet .app-info-table tbody tr:last-child .app-info-value-cell {
    padding: 20px 24px 28px;
    text-align: center;
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--sb-gold-bright);
    padding: 6px;
    box-sizing: content-box;
    background: rgba(232, 168, 73, 0.12);
    border-radius: 10px;
}

.app-name-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.app-name-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    padding: 10px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.app-name-text {
    font-family: var(--sb-font-display);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--sb-white);
    letter-spacing: 0.02em;
}

.sb-app-sheet .app-info-table tbody tr:nth-child(3) .app-info-value-cell,
.sb-app-sheet .app-info-table tbody tr:nth-child(4) .app-info-value-cell,
.sb-app-sheet .app-info-table tbody tr:nth-child(5) .app-info-value-cell,
.sb-app-sheet .app-info-table tbody tr:nth-child(6) .app-info-value-cell {
    font-family: var(--sb-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--sb-gold-bright);
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 32px;
    background: linear-gradient(180deg, var(--sb-gold-bright) 0%, var(--sb-gold) 100%);
    color: #1a1008;
    font-family: var(--sb-font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: var(--sb-radius);
    border: 1px solid #b07010;
    box-shadow: 0 8px 28px rgba(232, 168, 73, 0.35);
    transition: filter 0.2s, transform 0.15s;
}

.app-download-link:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

/* ── Footer ── */
.sb-page-footer {
    position: relative;
    margin-top: 32px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 168, 73, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, var(--sb-bg-panel) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--sb-border);
    padding: 0 0 28px;
    overflow: hidden;
}

.sb-page-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sb-gold) 35%, var(--sb-gold-bright) 50%, var(--sb-gold) 65%, transparent 100%);
    opacity: 0.8;
}

.sb-foot-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sb-foot-payzone {
    margin: 28px 0 32px;
    padding: 18px 20px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sb-foot-payzone-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sb-foot-payzone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(232, 168, 73, 0.12);
    color: var(--sb-gold-bright);
}

.sb-foot-payzone-title {
    font-family: var(--sb-font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sb-white);
}

.sb-foot-payzone-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sb-foot-paychip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 96px;
    flex: 1 1 96px;
    max-width: 130px;
    padding: 12px 10px;
    background: var(--sb-bg-panel);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.sb-foot-paychip:hover {
    border-color: rgba(232, 168, 73, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 73, 0.1);
}

.sb-foot-paychip img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.sb-foot-paychip span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--sb-text-dim);
    letter-spacing: 0.03em;
}

.sb-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 32px 28px;
    margin-bottom: 32px;
}

.sb-footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sb-footer-brand-link {
    display: inline-flex;
}

.sb-footer-brand-img {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.sb-footer-brand-link:hover .sb-footer-brand-img {
    opacity: 1;
}

.sb-foot-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-foot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: var(--sb-radius);
    font-family: var(--sb-font-ui);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.sb-foot-cta--primary {
    background: linear-gradient(180deg, var(--sb-gold-bright) 0%, var(--sb-gold) 100%);
    border: 1px solid #b07010;
    color: #1a1208;
    box-shadow: 0 4px 14px rgba(232, 168, 73, 0.28);
}

.sb-foot-cta--primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.sb-foot-cta--secondary {
    background: transparent;
    border: 1px solid var(--sb-border);
    color: var(--sb-text);
}

.sb-foot-cta--secondary:hover {
    border-color: var(--sb-text-dim);
    color: var(--sb-white);
}

.sb-foot-cta--accent {
    background: rgba(232, 168, 73, 0.1);
    border: 1px solid rgba(232, 168, 73, 0.35);
    color: var(--sb-gold-bright);
}

.sb-foot-cta--accent:hover {
    background: rgba(232, 168, 73, 0.18);
}

.sb-footer-col-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sb-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sb-white);
    margin-bottom: 14px;
}

.sb-footer-col-heading::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sb-gold);
    box-shadow: 0 0 8px rgba(232, 168, 73, 0.55);
    flex-shrink: 0;
}

.sb-footer-links {
    list-style: none;
}

.sb-footer-links li {
    margin-bottom: 9px;
}

.sb-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sb-text-dim);
    font-size: 0.84rem;
    transition: color 0.2s, transform 0.15s;
}

.sb-footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--sb-gold-bright);
    transition: width 0.2s;
}

.sb-footer-links a:hover,
.sb-footer-link--active {
    color: var(--sb-gold-bright);
    transform: translateX(3px);
}

.sb-footer-links a:hover::before,
.sb-footer-link--active::before {
    width: 10px;
}

.sb-footer-social {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sb-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 14px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    transition: border-color 0.2s, background 0.2s;
}

.sb-footer-social-link:hover {
    border-color: rgba(232, 168, 73, 0.4);
    background: rgba(232, 168, 73, 0.08);
}

.sb-footer-social-img {
    max-height: 24px;
    width: auto;
}

.sb-footer-base {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--sb-border);
}

.sb-foot-safe-head {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sb-text-dim);
    margin-bottom: 12px;
}

.sb-footer-safe-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.sb-foot-safe-item {
    margin: 0;
}

.sb-foot-safe-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    transition: border-color 0.2s, background 0.2s;
}

.sb-foot-safe-link:hover {
    border-color: rgba(232, 168, 73, 0.35);
    background: rgba(232, 168, 73, 0.06);
}

.sb-foot-safe-item--static {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
}

.sb-safe-badge {
    max-width: 80px;
    height: auto;
}

.sb-footer-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--sb-text-dim);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

.sb-foot-legal-copy {
    color: var(--sb-text);
}

.sb-foot-legal-note {
    font-size: 0.7rem;
    opacity: 0.85;
}

/* ── 404 ── */
.sb-page-frame:has(.sb-error-panel) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px);
    padding-top: 40px;
    padding-bottom: 40px;
}

.sb-error-panel {
    position: relative;
    text-align: center;
    padding: 48px 36px 40px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 200, 66, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
    border: 1px solid rgba(232, 168, 73, 0.35);
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(232, 168, 73, 0.08);
    overflow: hidden;
}

.sb-error-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sb-orange), var(--sb-gold-bright), var(--sb-gold));
}

.sb-error-code {
    font-family: var(--sb-font-display);
    font-size: clamp(4.5rem, 18vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #ffe082 0%, var(--sb-gold-bright) 35%, var(--sb-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 8px 24px rgba(232, 168, 73, 0.35));
    letter-spacing: -0.02em;
}

.sb-error-title {
    font-family: var(--sb-font-display);
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
    color: var(--sb-white);
    margin-bottom: 14px;
    line-height: 1.35;
}

.sb-error-desc {
    color: var(--sb-text-dim);
    margin-bottom: 32px;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.sb-error-panel .sb-btn-gold {
    min-width: 220px;
    padding: 12px 28px;
    font-size: 0.82rem;
    box-shadow: 0 8px 28px rgba(232, 168, 73, 0.35);
}

/* ── Contact page ── */
.sb-page-contact .text-content {
    position: relative;
    max-width: 760px;
    margin-top: 16px;
    padding: 36px 32px 32px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 168, 73, 0.1) 0%, transparent 60%),
        var(--sb-bg-panel);
    border: 1px solid rgba(232, 168, 73, 0.22);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.sb-page-contact .text-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sb-orange), var(--sb-gold-bright), var(--sb-gold));
}

.sb-page-contact .text-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 30%, var(--sb-gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sb-page-contact .text-content > p:first-of-type {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--sb-text);
}

.sb-page-contact .text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sb-gold-bright);
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sb-border);
}

.sb-page-contact .text-content h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sb-gold);
    box-shadow: 0 0 10px rgba(232, 168, 73, 0.5);
    flex-shrink: 0;
}

.sb-page-contact .text-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sb-font-display);
    font-size: 1rem;
    color: var(--sb-white);
    margin: 0;
    padding: 16px 18px 0;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-bottom: none;
    border-radius: var(--sb-radius) var(--sb-radius) 0 0;
}

.sb-page-contact .text-content h3::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(232, 168, 73, 0.12);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.sb-page-contact .text-content h3:nth-of-type(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c842' stroke-width='2'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M4 8l8 5 8-5'/%3E%3C/svg%3E");
}

.sb-page-contact .text-content h3:nth-of-type(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c842' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.sb-page-contact .text-content h3 + p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 18px 18px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 0 0 var(--sb-radius) var(--sb-radius);
    color: var(--sb-text-dim);
    line-height: 1.65;
}

.sb-page-contact .text-content h3 + p a {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 10px 18px;
    background: linear-gradient(180deg, var(--sb-gold-bright), var(--sb-gold));
    color: #1a1208;
    text-decoration: none;
    border-radius: var(--sb-radius);
    font-family: var(--sb-font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(232, 168, 73, 0.35);
    transition: filter 0.2s, transform 0.15s;
}

.sb-page-contact .text-content h3 + p a:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.sb-page-contact .text-content h2:last-of-type + p {
    padding: 18px 20px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--sb-text-dim);
}

/* ── Legal pages (privacy, rules) ── */
.sb-page-doc .text-content {
    position: relative;
    max-width: 860px;
    margin-top: 20px;
    padding: 36px 32px;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(232, 168, 73, 0.08) 0%, transparent 55%),
        var(--sb-bg-panel);
    border: 1px solid rgba(232, 168, 73, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.sb-page-doc .text-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sb-gold-bright), transparent);
}

.sb-page-doc .text-content h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sb-border);
    color: var(--sb-white);
}

.sb-page-doc .text-content > p:first-of-type {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--sb-text-dim);
    margin-bottom: 8px;
}

.sb-page-doc .text-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin: 32px 0 14px;
    padding: 12px 16px;
    background: var(--sb-bg-rail);
    border-left: 3px solid var(--sb-gold);
    border-radius: 0 var(--sb-radius) var(--sb-radius) 0;
    color: var(--sb-white);
}

.sb-page-doc .text-content h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--sb-border), transparent);
    margin-left: 8px;
}

.sb-page-doc .text-content h3 {
    font-size: 1rem;
    color: var(--sb-gold-bright);
    margin: 22px 0 10px;
}

.sb-page-doc .text-content p {
    line-height: 1.75;
    color: var(--sb-text-dim);
}

.sb-page-doc .text-content .list-container ul,
.sb-page-doc .text-content .list-container ol,
.sb-page-doc .text-content ul,
.sb-page-doc .text-content ol {
    margin: 12px 0 20px;
    padding: 16px 20px 16px 36px;
    background: var(--sb-bg-rail);
    border: 1px solid var(--sb-border);
    border-radius: var(--sb-radius);
    list-style: none;
}

.sb-page-doc .text-content .list-container ul li,
.sb-page-doc .text-content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 4px;
    color: var(--sb-text-dim);
    line-height: 1.6;
}

.sb-page-doc .text-content .list-container ul li::before,
.sb-page-doc .text-content ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sb-gold);
}

.sb-page-doc .text-content .list-container ol,
.sb-page-doc .text-content ol {
    counter-reset: sb-doc-step;
}

.sb-page-doc .text-content .list-container ol li,
.sb-page-doc .text-content ol li {
    counter-increment: sb-doc-step;
    position: relative;
    margin-bottom: 10px;
    padding-left: 4px;
    color: var(--sb-text-dim);
    line-height: 1.6;
}

.sb-page-doc .text-content .list-container ol li::before,
.sb-page-doc .text-content ol li::before {
    content: counter(sb-doc-step);
    position: absolute;
    left: -24px;
    top: 0.1em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sb-font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--sb-gold-bright);
    background: rgba(232, 168, 73, 0.12);
    border-radius: 50%;
}

.sb-page-doc .text-content a {
    color: var(--sb-gold-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 168, 73, 0.4);
    transition: color 0.2s, border-color 0.2s;
}

.sb-page-doc .text-content a:hover {
    color: var(--sb-white);
    border-color: var(--sb-gold-bright);
}

.sb-page-doc .text-content blockquote {
    border-left-color: var(--sb-gold);
    background: rgba(232, 168, 73, 0.06);
}

.sb-page-doc .text-content .table-wrapper {
    border-color: rgba(232, 168, 73, 0.2);
}

.sb-page-doc .text-content th {
    background: rgba(232, 168, 73, 0.12);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .sb-primary-rail {
        display: none;
    }

    .sb-drawer-trigger {
        display: flex;
    }

    .sb-chrome-top {
        padding: 10px 16px;
    }

    .sb-chrome-actions .sb-btn {
        padding: 7px 12px;
        font-size: 0.68rem;
    }

    .sb-page-frame {
        padding: 16px 14px 90px;
    }

    .sb-hero-img {
        max-height: 260px;
    }

    .sb-slot-card {
        flex: 0 0 130px;
    }

    .sb-slot-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.35);
    }

    .sb-slot-btn {
        padding: 6px 14px;
        font-size: 0.65rem;
        min-width: 88px;
    }

    .sb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .sb-footer-brand-col {
        grid-column: 1 / -1;
    }

    .sb-foot-paychip {
        min-width: 82px;
        flex: 1 1 82px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .sb-brand-mark .sb-brand-img {
        height: 30px;
    }

    .sb-chrome-actions {
        gap: 6px;
    }

    .sb-drawer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-content {
        padding: 18px 14px;
    }

    .sb-app-sheet {
        margin: 12px 0 20px;
    }

    .sb-app-sheet .app-info-table tbody tr:first-child .app-info-value-cell {
        padding: 20px 14px 18px;
    }

    .sb-app-sheet .app-info-label-cell {
        width: 40px;
        padding: 12px 6px 12px 10px;
    }

    .app-info-icon-col {
        width: 40px;
    }

    .app-info-label-cell,
    .app-info-value-cell {
        padding: 12px 10px;
    }

    .sb-app-sheet .app-info-table tbody tr:nth-child(2) .app-info-value-cell {
        padding: 12px 12px 12px 4px;
        font-size: 0.8rem;
    }

    .sb-app-sheet .app-info-table tbody tr:not(:first-child):not(:last-child) .app-info-value-cell {
        padding-left: 4px;
    }

    .app-name-text {
        font-size: 1.2rem;
    }

    .app-download-link {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .sb-app-sheet .app-info-table tbody tr:last-child .app-info-value-cell {
        padding: 16px 14px 22px;
    }

    .sb-foot-shell {
        padding: 0 16px;
    }

    .sb-footer-grid {
        grid-template-columns: 1fr;
    }

    .sb-foot-cta-row {
        flex-direction: column;
    }

    .sb-foot-cta {
        width: 100%;
    }
}
