:root {
    --bg-primary: #0e0f19;
    --bg-header: rgba(14, 15, 25, 0.94);
    --bg-card: #1b1f31;
    --bg-card-hover: #252a3d;
    --btn-outline-border: rgba(255, 255, 255, 0.12);
    --btn-outline-bg: rgba(255, 255, 255, 0.06);
    --btn-1: #2d3142;
    --btn-2: #613bff;
    --accent: #ffc700;
    --accent-hover: #ffd44d;
    --accent-purple: #613bff;
    --accent-purple-hover: #7c5cff;
    --accent-cta: #ffc700;
    --accent-cta-hover: #e6b400;
    --cta-text: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3b8;
    --text-muted: #6b728e;
    --border: rgba(255, 255, 255, 0.08);
    --success: #22c55e;
    --radius: 12px;
    --radius-sm: 10px;
    --radius-lg: 16px;
    --container: 1200px;
    --header-h: 72px;
    --transition: 0.25s ease;
    --h1: clamp(1.85rem, 4vw, 2.5rem);
    --h2: 1.5rem;
    --h3: 1.25rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

.rbt-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.rbt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.rbt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 0;
}

.rbt-header__logo {
    flex-shrink: 0;
    margin-right: 24px;
}

.rbt-header__logo img {
    height: 36px;
    width: auto;
}

.rbt-header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd44d, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rbt-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
}

.rbt-header__nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.rbt-header__nav a:hover {
    color: var(--text-primary);
    background: rgba(97, 59, 255, 0.18);
}

.rbt-header__nav a.rbt-active {
    color: var(--text-primary);
    background: rgba(97, 59, 255, 0.18);
}

.rbt-header__nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.rbt-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 16px;
}

.rbt-header__actions .rbt-btn {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.rbt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.rbt-btn--outline {
    border: 1.5px solid var(--btn-outline-border);
    color: var(--text-primary);
    background: var(--btn-outline-bg);
}

.rbt-btn--outline:hover {
    border-color: rgba(255, 199, 0, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.rbt-btn--cta {
    background: var(--accent);
    color: var(--cta-text);
    font-weight: 700;
    border: none;
}

.rbt-btn--cta:hover {
    color: var(--cta-text);
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255, 199, 0, 0.35);
}

.rbt-btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
}

.rbt-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 1100;
}

.rbt-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.rbt-burger.rbt-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rbt-burger.rbt-active span:nth-child(2) {
    opacity: 0;
}

.rbt-burger.rbt-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.rbt-mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.rbt-mobile-nav-backdrop.rbt-is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rbt-mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-h));
    z-index: 999;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.rbt-mobile-nav.rbt-open {
    transform: translateY(0);
    pointer-events: auto;
}

.rbt-mobile-nav > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.rbt-mobile-nav > a:hover,
.rbt-mobile-nav > a.rbt-active {
    color: var(--text-primary);
    background: rgba(97, 59, 255, 0.15);
}

.rbt-mobile-nav > a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.75;
}

.rbt-mobile-nav__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    margin: 12px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.rbt-mobile-nav__btn {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.rbt-mobile-nav__btn--login {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.rbt-mobile-nav__btn--login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 199, 0, 0.5);
}

.rbt-mobile-nav__btn--register {
    color: var(--cta-text);
    background: linear-gradient(180deg, #ffe066 0%, #ffc700 45%, #e6a800 100%);
    border: 1px solid rgba(255, 220, 100, 0.35);
    box-shadow: 0 4px 18px rgba(255, 199, 0, 0.28);
}

.rbt-mobile-nav__btn--register:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 199, 0, 0.38);
}

.rbt-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 48px;
    overflow: hidden;
}

.rbt-hero--home {
    min-height: auto;
    padding-bottom: 56px;
}

.rbt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 82% 22%, rgba(97, 59, 255, 0.32), transparent 55%),
        radial-gradient(ellipse 55% 45% at 12% 75%, rgba(255, 199, 0, 0.07), transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #12131f 100%);
    z-index: 1;
}

.rbt-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 42% at 72% 32%, rgba(97, 59, 255, 0.4), transparent 68%);
    pointer-events: none;
    z-index: 1;
}

.rbt-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 78% 65% at 50% 38%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 78% 65% at 50% 38%, black, transparent);
    z-index: 1;
    opacity: 0.65;
}

.rbt-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    width: 100%;
}

.rbt-hero__text {
    text-align: left;
}

.rbt-hero--home .rbt-hero__eyebrow {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 199, 0, 0.1);
    border: 1px solid rgba(255, 199, 0, 0.3);
    border-radius: 999px;
}

.rbt-hero--home h1 {
    font-size: clamp(2rem, 4.8vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.rbt-hero__title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #b8bcc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rbt-hero__sub {
    font-size: clamp(0.92rem, 1.6vw, 1.08rem);
    color: var(--text-secondary);
    line-height: 1.75;
}

.rbt-hero--home .rbt-hero__sub {
    max-width: 32rem;
    margin: 0 0 24px;
}

.rbt-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rbt-hero--home .rbt-hero__actions {
    justify-content: flex-start;
}

.rbt-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: 28rem;
}

@media (min-width: 480px) {
    .rbt-hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rbt-hero__stat {
    text-align: left;
}

.rbt-hero--home .rbt-hero__stat {
    text-align: left;
}

.rbt-hero__stat-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.rbt-hero__stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rbt-hero__badges-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.rbt-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.rbt-hero-badge {
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rbt-hero-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}

.rbt-hero-badge:nth-child(1) { transform: rotate(-1.5deg); }
.rbt-hero-badge:nth-child(2) { transform: rotate(1deg); }
.rbt-hero-badge:nth-child(3) { transform: rotate(-0.8deg); }
.rbt-hero-badge:nth-child(4) { transform: rotate(1.2deg); }
.rbt-hero-badge:nth-child(5) { transform: rotate(-1deg); }
.rbt-hero-badge:nth-child(6) { transform: rotate(0.6deg); }

.rbt-hero-badge:hover:nth-child(n) {
    transform: translateY(-5px) rotate(0deg);
}

.rbt-hero-badge__icon {
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rbt-hero-badge__icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.rbt-hero-badge__label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.rbt-hero-badge--purple {
    background: linear-gradient(155deg, #7c4dff 0%, #4a24cc 90%);
}

.rbt-hero-badge--coral {
    background: linear-gradient(155deg, #fb7185 0%, #be123c 90%);
}

.rbt-hero-badge--pink {
    background: linear-gradient(155deg, #f472b6 0%, #a21caf 90%);
}

.rbt-hero-badge--lime {
    background: linear-gradient(155deg, #a3e635 0%, #4d7c0f 90%);
}

.rbt-hero-badge--orange {
    background: linear-gradient(155deg, #fb923c 0%, #c2410c 90%);
}

.rbt-hero-badge--blue {
    background: linear-gradient(155deg, #60a5fa 0%, #1d4ed8 90%);
}

@media (max-width: 900px) {
    .rbt-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rbt-hero__text {
        text-align: center;
    }

    .rbt-hero--home .rbt-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .rbt-hero--home .rbt-hero__actions {
        justify-content: center;
    }

    .rbt-hero__stats {
        margin-left: auto;
        margin-right: auto;
    }

    .rbt-hero__stat,
    .rbt-hero--home .rbt-hero__stat {
        text-align: center;
    }

    .rbt-hero-badges {
        max-width: 360px;
        margin: 0 auto;
    }
}

.rbt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.rbt-hero--page {
    min-height: auto;
    padding: calc(var(--header-h) + 20px) 0 24px;
}

.rbt-hero--page .rbt-hero__content {
    max-width: var(--container);
    text-align: left;
}

.rbt-hero--page .rbt-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    vertical-align: middle;
    background: linear-gradient(145deg, rgba(97, 59, 255, 0.14) 0%, rgba(27, 31, 49, 0.65) 55%, rgba(14, 15, 25, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 6px 20px rgba(0, 0, 0, 0.35);
}

.rbt-hero--page .rbt-breadcrumb::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-right: 0.65rem;
    margin-left: 0.15rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd44d, var(--accent));
    box-shadow: 0 0 12px rgba(255, 199, 0, 0.45);
}

.rbt-hero--page .rbt-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition), text-underline-offset var(--transition);
}

.rbt-hero--page .rbt-breadcrumb a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.rbt-hero--page .rbt-breadcrumb a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.rbt-hero--page .rbt-breadcrumb__sep {
    margin: 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    color: rgba(156, 163, 184, 0.55);
    user-select: none;
    pointer-events: none;
}

.rbt-hero--page .rbt-breadcrumb span:last-child {
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    background: linear-gradient(90deg, #fff8e6 0%, var(--accent) 55%, #e6a800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rbt-hero--page h1 {
    font-size: var(--h1);
    margin-bottom: 12px;
}

.rbt-hero--page .rbt-hero__sub {
    margin: 0;
}

.rbt-hero__page-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rbt-hero__page-text {
    min-width: 0;
}

.rbt-hero__page-row .rbt-hero__art {
    margin: 0;
}

@media (min-width: 768px) {
    .rbt-hero__page-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px 48px;
    }

    .rbt-hero__page-text {
        flex: 1 1 0;
        max-width: min(560px, 55%);
    }

    .rbt-hero__page-row .rbt-hero__art {
        flex: 1 1 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: min(520px, 48%);
    }

    .rbt-hero__page-row .rbt-hero__art img {
        width: 100%;
    }
}

.rbt-hero__art {
    margin: 16px 0 20px;
    max-width: 100%;
}

.rbt-hero__art img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
}

.rbt-hero--page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 2;
}

@media (max-width: 767px) {
    .rbt-hero--page {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 16px 16px;
    }
    .rbt-hero--page .rbt-breadcrumb {
        margin-bottom: 10px;
        padding: 0.4rem 0.85rem 0.4rem 0.55rem;
        font-size: 0.78rem;
    }

    .rbt-hero--page .rbt-breadcrumb::before {
        width: 5px;
        height: 5px;
        margin-right: 0.55rem;
    }

    .rbt-hero__page-row {
        gap: 16px;
    }

    .rbt-hero__art {
        margin: 12px 0 16px;
    }
}

.rbt-section {
    padding: 80px 0;
}

.rbt-section--originals.rbt-section--slots {
    padding-top: 32px;
}

.rbt-slots-header__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rbt-slots-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 44px;
    padding: 0 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    background: #282a4d;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.rbt-slots-view-all:hover {
    color: #ffffff;
    background: #32355c;
}

.rbt-slots-arrow-group {
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    background: #282a4d;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rbt-slots-arrow-group__btn {
    box-sizing: border-box;
    width: 44px;
    min-width: 44px;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.rbt-slots-arrow-group__btn + .rbt-slots-arrow-group__btn {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.rbt-slots-arrow-group__btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rbt-slots-arrow-group__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 480px) {
    .rbt-slots-header--with-controls {
        flex-wrap: wrap;
        gap: 12px;
    }

    .rbt-slots-header--with-controls .rbt-slots-header__controls {
        width: 100%;
        justify-content: flex-end;
    }
}

.rbt-originals-slider {
    position: relative;
    overflow: hidden;
}

.rbt-originals-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.rbt-originals-grid::-webkit-scrollbar {
    display: none;
}

.rbt-originals-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    scroll-snap-align: start;
    transition: filter var(--transition), transform var(--transition);
}

.rbt-originals-card:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .rbt-originals-grid {
        gap: 16px;
    }
    .rbt-originals-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

.rbt-originals-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.rbt-originals-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.rbt-originals-card:hover .rbt-originals-card__img img {
    transform: scale(1.05);
}

.rbt-section--slots {
    padding: 0 0 32px;
}

.rbt-slots-wrapper {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.rbt-slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.rbt-slots-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: none;
}

.rbt-slots-slider {
    position: relative;
    overflow: hidden;
}

.rbt-slots-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.rbt-slots-grid::-webkit-scrollbar {
    display: none;
}

.rbt-slots-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    scroll-snap-align: start;
    transition: filter var(--transition), transform var(--transition);
}

.rbt-slots-card:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.rbt-slots-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rbt-slots-card__tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 5px 10px;
    max-width: calc(100% - 16px);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 6px;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.rbt-slots-card__tag--early {
    background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
}

.rbt-slots-card__tag--exclusive {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

@media (min-width: 768px) {
    .rbt-slots-grid {
        gap: 16px;
    }
    .rbt-slots-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

.rbt-toc {
    padding: 28px 0 8px;
}

.rbt-toc__box {
    padding: 16px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.rbt-toc__title {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.rbt-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rbt-toc__list li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rbt-toc__list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.75;
    margin-top: 1px;
}

.rbt-toc__list a {
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rbt-toc__list a:hover {
    color: var(--accent);
}

@media (min-width: 768px) {
    .rbt-toc__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 20px;
    }
}

.rbt-text-content {
    padding: 32px 0 32px;
}

.rbt-text-content__inner {
    max-width: var(--container);
}

.rbt-text-content__figure {
    margin: 0 0 24px;
    max-width: min(100%, 720px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.rbt-text-content__figure img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .rbt-text-content__figure {
        margin-left: auto;
        margin-right: auto;
    }
}

.rbt-text-content h2,
.rbt-text-content h3 {
    margin: 24px 0 24px;
    letter-spacing: -0.02em;
}

.rbt-text-content h2 {
    font-size: var(--h2);
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.rbt-text-content h3 {
    font-size: var(--h3);
}

.rbt-text-content h2:first-child,
.rbt-text-content h3:first-child {
    margin-top: 0;
}

.rbt-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.rbt-text-content p:last-child {
    margin-bottom: 0;
}

.rbt-text-content p a,
.rbt-text-content li a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.rbt-text-content p a:hover,
.rbt-text-content li a:hover {
    color: var(--accent-hover);
}

.rbt-text-content p a:focus-visible,
.rbt-text-content li a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.rbt-text-content ul,
.rbt-text-content ol {
    margin: 0 0 16px;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
}

.rbt-text-content ul {
    list-style: disc outside;
}

.rbt-text-content ol {
    list-style: decimal outside;
}

.rbt-text-content ul li,
.rbt-text-content ol li {
    margin-bottom: 8px;
    padding-left: 0.35em;
}

.rbt-text-content ul li::marker,
.rbt-text-content ol li::marker {
    color: var(--accent);
}

.rbt-text-content li:last-child {
    margin-bottom: 0;
}

.rbt-text-content ul ul,
.rbt-text-content ol ol,
.rbt-text-content ul ol,
.rbt-text-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.rbt-text-content ul ul {
    list-style-type: circle;
}

.rbt-text-content ul ul ul {
    list-style-type: square;
}

.rbt-text-content ol ol {
    list-style-type: lower-alpha;
}

.rbt-text-content ol ol ol {
    list-style-type: lower-roman;
}

.rbt-text-content__table-wrap {
    width: 100%;
    margin: 12px 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rbt-text-content table {
    width: 100%;
    min-width: 260px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.rbt-text-content caption {
    caption-side: bottom;
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 10px;
}

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

.rbt-text-content thead th {
    background: rgba(97, 59, 255, 0.12);
    color: var(--text-primary);
    font-weight: 600;
}

.rbt-text-content tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.rbt-text-content table a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rbt-text-content table a:hover {
    color: var(--accent-hover);
}

.rbt-text-content table a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 3px;
}

.rbt-faq {
    padding: 24px 0 48px;
}

.rbt-faq__title {
    margin: 0 0 20px;
    font-size: var(--h2);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rbt-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rbt-faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.rbt-faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.rbt-faq__trigger:hover {
    background: rgba(97, 59, 255, 0.12);
}

.rbt-faq__question {
    margin: 0;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1;
}

.rbt-faq__icon {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.rbt-faq__item.rbt-is-open .rbt-faq__icon {
    transform: rotate(90deg);
}

.rbt-faq__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.rbt-faq__item.rbt-is-open .rbt-faq__answer-wrap {
    max-height: 480px;
    border-top: 1px solid var(--border);
}

.rbt-faq__answer {
    margin: 0;
    padding: 14px 20px 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.rbt-error-404 {
    min-height: calc(100vh - var(--header-h) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 48px) 20px 80px;
    text-align: center;
}

.rbt-error-404__code {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 800;
    color: var(--accent);
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.rbt-error-404__text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 0 32px;
}

.rbt-page-extra {
    padding: 56px 0 80px;
}

.rbt-page-extra__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rbt-page-highlights {
    position: relative;
}

.rbt-page-highlights__title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 12px;
    max-width: 36rem;
}

.rbt-page-highlights__lead {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 40rem;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.rbt-page-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rbt-page-highlights--bonus .rbt-page-highlight-card {
    border-top: 3px solid rgba(255, 199, 0, 0.45);
}

.rbt-page-highlights--promotions .rbt-page-highlight-card {
    border-top: 3px solid rgba(97, 59, 255, 0.55);
}

.rbt-page-highlights--app .rbt-page-highlight-card {
    border-top: 3px solid rgba(34, 197, 94, 0.45);
}

.rbt-page-highlights--payments .rbt-page-highlight-card {
    border-top: 3px solid rgba(56, 189, 248, 0.45);
}

.rbt-page-highlight-card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(27, 31, 49, 0.65) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 22px 26px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.rbt-page-highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.rbt-page-highlight-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.rbt-page-highlights--promotions .rbt-page-highlight-card__icon {
    color: #a78bfa;
}

.rbt-page-highlights--app .rbt-page-highlight-card__icon {
    color: var(--success);
}

.rbt-page-highlights--payments .rbt-page-highlight-card__icon {
    color: #38bdf8;
}

.rbt-page-highlight-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.rbt-page-highlight-card__text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.rbt-page-cta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.rbt-page-cta__glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.rbt-page-cta--bonus {
    background: linear-gradient(125deg, rgba(97, 59, 255, 0.22) 0%, var(--bg-card) 42%, rgba(255, 199, 0, 0.08) 100%);
}

.rbt-page-cta--bonus .rbt-page-cta__glow {
    background: radial-gradient(circle, rgba(255, 199, 0, 0.5) 0%, transparent 70%);
}

.rbt-page-cta--promotions {
    background: linear-gradient(125deg, rgba(97, 59, 255, 0.35) 0%, var(--bg-card) 45%, rgba(124, 92, 255, 0.12) 100%);
}

.rbt-page-cta--promotions .rbt-page-cta__glow {
    background: radial-gradient(circle, rgba(124, 92, 255, 0.55) 0%, transparent 70%);
}

.rbt-page-cta--app {
    background: linear-gradient(125deg, rgba(34, 197, 94, 0.12) 0%, var(--bg-card) 48%, rgba(97, 59, 255, 0.15) 100%);
}

.rbt-page-cta--app .rbt-page-cta__glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
}

.rbt-page-cta--payments {
    background: linear-gradient(125deg, rgba(56, 189, 248, 0.14) 0%, var(--bg-card) 46%, rgba(255, 199, 0, 0.06) 100%);
}

.rbt-page-cta--payments .rbt-page-cta__glow {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
}

.rbt-page-cta__content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: min(100%, 280px);
}

.rbt-page-cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
}

.rbt-page-cta--promotions .rbt-page-cta__eyebrow {
    color: #c4b5fd;
}

.rbt-page-cta--app .rbt-page-cta__eyebrow {
    color: #4ade80;
}

.rbt-page-cta--payments .rbt-page-cta__eyebrow {
    color: #7dd3fc;
}

.rbt-page-cta__title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.3;
}

.rbt-page-cta__desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: 34rem;
}

.rbt-page-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.rbt-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.rbt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .rbt-footer__grid {
        grid-template-columns: minmax(0, 280px) 1fr;
        gap: 40px;
        align-items: start;
    }
}

.rbt-footer__brand {
    max-width: 280px;
}

.rbt-footer__nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.rbt-footer__nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.rbt-footer__nav-links a:hover {
    color: var(--accent);
}

.rbt-footer__nav-links a.rbt-is-active {
    color: var(--text-primary);
    font-weight: 600;
}

.rbt-footer__logo {
    margin-bottom: 16px;
}

.rbt-footer__logo img {
    height: 32px;
    width: auto;
}

.rbt-footer__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd44d, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rbt-footer__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.rbt-footer-payments {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.rbt-footer-payments__title {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.rbt-footer-payments__viewport {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}

.rbt-footer-payments__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-x;
}

.rbt-footer-payments__track:active,
.rbt-footer-payments__track.rbt-is-dragging {
    cursor: grabbing;
    user-select: none;
}

.rbt-footer-payments__track::-webkit-scrollbar {
    display: none;
}

.rbt-footer-pay {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-height: 44px;
    border-radius: 12px;
    background: rgba(40, 42, 77, 0.6);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: border-color 0.2s, background 0.2s;
}

.rbt-footer-pay:hover {
    border-color: rgba(97, 59, 255, 0.45);
    background: rgba(27, 31, 49, 0.95);
}

.rbt-footer-pay__icon {
    display: flex;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.rbt-footer-pay__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.rbt-footer-pay__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.rbt-footer-pay__ticker {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rbt-footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.rbt-footer__copy {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.rbt-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.rbt-footer__bottom-links a {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.rbt-footer__bottom-links a:hover {
    color: var(--accent);
}

@media (max-width: 1199px) {
    .rbt-footer__grid {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .rbt-header__nav,
    .rbt-header__actions {
        display: none;
    }

    .rbt-burger {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .rbt-page-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rbt-page-highlights__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 64px;
    }

    .rbt-hero {
        min-height: 50vh;
        padding: calc(var(--header-h) + 32px) 0 40px;
    }

    .rbt-hero.rbt-hero--home {
        min-height: auto;
    }

    .rbt-hero.rbt-hero--page {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 0 16px;
    }

    .rbt-hero__stats {
        gap: 16px 20px;
        max-width: 100%;
    }

    .rbt-hero__stat-value {
        font-size: 1.4rem;
    }

    .rbt-section {
        padding: 50px 0;
    }
    .rbt-section--originals.rbt-section--slots {
        padding: 20px 0 16px;
    }
    .rbt-section--slots {
        padding: 0 0 16px;
    }
    .rbt-slots-header {
        margin-bottom: 12px;
    }

    .rbt-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rbt-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rbt-hero__actions {
        flex-direction: column;
    }

    .rbt-hero__actions .rbt-btn {
        width: 100%;
    }

    .rbt-btn--lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .rbt-page-extra {
        padding: 40px 0 56px;
    }

    .rbt-page-extra__inner {
        gap: 32px;
    }

    .rbt-page-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .rbt-page-cta__content {
        text-align: center;
    }

    .rbt-page-cta__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rbt-page-cta__actions {
        justify-content: center;
    }

    .rbt-page-cta__actions .rbt-btn {
        flex: 1 1 auto;
        min-width: 140px;
    }
}
