:root {
    --bg-primary: #151b2d;
    --bg-header: #1a2235;
    --bg-card: #1e2641;
    --bg-card-hover: #252b40;
    --btn-1: #3d4d6f;
    --btn-2: #007bff;
    --accent: #007bff;
    --accent-hover: #3395ff;
    --accent-cta: #007bff;
    --accent-cta-hover: #3395ff;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border: #2a3548;
    --success: #00b894;
    --radius: 8px;
    --radius-sm: 6px;
    --radius-lg: 10px;
    --container: 1200px;
    --header-h: 72px;
    --transition: 0.25s ease;
    --h1: 2rem;
    --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); }

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

.rnt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(21, 27, 45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

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

.rnt-header__logo {
    flex-shrink: 0;
}

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

.rnt-header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.rnt-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rnt-header__nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: color var(--transition), border-color var(--transition);
}

.rnt-header__nav a:hover {
    color: var(--text-primary);
    background: transparent;
}

.rnt-header__nav a.active {
    color: var(--accent);
    background: transparent;
    border-bottom-color: var(--accent);
}

.rnt-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rnt-header__actions .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.rnt-header__actions .btn--lg {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.btn--outline {
    border: 1.5px solid var(--btn-1);
    color: #fff;
    background: rgba(45, 58, 88, 0.28);
}

.btn--outline:hover {
    border-color: var(--btn-2);
    color: #fff;
    background: var(--btn-1);
}

.btn--cta {
    background: var(--btn-2);
    color: #fff;
}

.btn--cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 123, 255, 0.35);
}

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

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

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

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

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

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

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

.rnt-mobile-nav.open {
    z-index: 1050;
    transform: translateY(0);
    pointer-events: auto;
}

.rnt-mobile-nav a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.rnt-mobile-nav a:hover {
    color: var(--text-primary);
    background: transparent;
}

.rnt-mobile-nav a.active {
    color: var(--accent);
    background: transparent;
    border-left-color: var(--accent);
}

.rnt-mobile-nav__actions {
    margin: 16px -20px -20px;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.28));
}

.rnt-mobile-nav__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rnt-mobile-nav__actions .btn--outline {
    border-width: 1.5px;
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(45, 58, 88, 0.45);
}

.rnt-mobile-nav__actions .btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
    background: rgba(61, 77, 111, 0.55);
}

.rnt-mobile-nav__actions .btn--cta {
    color: #fff;
    background: linear-gradient(180deg, var(--accent) 0%, #0066dd 100%);
    border: none;
    box-shadow:
        0 2px 12px rgba(0, 123, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rnt-mobile-nav__actions .btn--cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 4px 18px rgba(0, 123, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .rnt-mobile-nav {
        display: none;
    }
}

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

.rnt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 123, 255, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 123, 255, 0.06), transparent),
        linear-gradient(180deg, var(--bg-primary), rgba(21, 27, 45, 0.98));
    z-index: 1;
}

.rnt-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black, transparent);
}

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

.rnt-hero__copy {
    text-align: left;
    min-width: 0;
}

.rnt-hero__visual {
    position: relative;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.rnt-hero__visual img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    aspect-ratio: 1376 / 768;
    object-fit: cover;
}

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

.rnt-hero h1 {
    font-size: var(--h1);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.rnt-hero h1 span {
    color: var(--text-primary);
}

.rnt-hero__inner .rnt-hero__sub {
    margin-left: 0;
    margin-right: 0;
}

.rnt-hero__sub {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.rnt-hero__inner .rnt-hero__actions {
    justify-content: flex-start;
}

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

@media (max-width: 991px) {
    .rnt-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rnt-hero__visual {
        order: 1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .rnt-hero__copy {
        order: 2;
        text-align: center;
    }

    .rnt-hero__inner .rnt-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .rnt-hero__inner .rnt-hero__actions {
        justify-content: center;
    }
}

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

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

.rnt-hero--page .rnt-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.rnt-hero--page .rnt-breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.rnt-hero--page .rnt-breadcrumb a:hover {
    color: var(--accent);
}

.rnt-hero--page .rnt-breadcrumb__sep {
    opacity: 0.5;
    user-select: none;
}

.rnt-hero--page .rnt-breadcrumb span:last-child {
    color: var(--accent);
    font-weight: 500;
}

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

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

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

.rnt-hero.rnt-hero--page.rnt-hero--page--split {
    min-height: min(460px, 78vh);
    padding: calc(var(--header-h) + 28px) 0 40px;
}

.rnt-hero--page.rnt-hero--page--split .rnt-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.rnt-hero--page.rnt-hero--page--split .rnt-hero__content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.rnt-hero--page.rnt-hero--page--split .rnt-hero__sub {
    max-width: 36rem;
    margin: 0;
}

@media (max-width: 991px) {
    .rnt-hero--page.rnt-hero--page--split .rnt-hero__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rnt-hero--page.rnt-hero--page--split .rnt-hero__visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .rnt-hero--page.rnt-hero--page--split .rnt-hero__content {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .rnt-hero--page {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 0 16px;
    }
    .rnt-hero.rnt-hero--page.rnt-hero--page--split {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 0 20px;
    }
    .rnt-hero--page .rnt-breadcrumb {
        margin-bottom: 8px;
    }
}

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

.rnt-section.rnt-text-content {
    padding: 56px 0 44px;
}

.rnt-section.rnt-section--toc {
    padding: 22px 0 26px;
    background: rgba(0, 123, 255, 0.06);
    border-bottom: 1px solid var(--border);
}

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

.rnt-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.rnt-toc__list li {
    margin: 0;
}

.rnt-toc__list a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.rnt-toc__list a:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    background: rgba(0, 123, 255, 0.08);
}

main h2 {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.rnt-section--slots {
    padding: 28px 0 36px;
    background: #0e101c;
}

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

.rnt-slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rnt-slots-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .rnt-slots-title {
        font-size: 1.5rem;
    }
}

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

.rnt-slots-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    min-height: 46px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: #2c2d4e;
    border-radius: 14px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.rnt-slots-view-all:hover {
    color: #ffffff;
    background: #383a62;
    transform: translateY(-1px);
}

.rnt-slots-nav-arrows {
    display: inline-flex;
    align-items: stretch;
    height: 46px;
    background: #2c2d4e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.rnt-slots-nav-arrows__btn {
    width: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition);
}

.rnt-slots-nav-arrows__btn + .rnt-slots-nav-arrows__btn {
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.35);
}

.rnt-slots-nav-arrows__btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rnt-slots-nav-arrows__btn:active {
    background: rgba(0, 0, 0, 0.15);
}

.rnt-slots-slider {
    overflow: hidden;
}

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

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

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

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

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

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

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

.rnt-text-content__inner {
    max-width: var(--container);
    width: 100%;
}

.rnt-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 28px 0 20px;
}

.rnt-table-wrapper .rnt-content-table {
    margin: 0;
    width: 100%;
}

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

.rnt-text-content h2 {
    font-size: var(--h2);
}

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

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

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

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

.rnt-text-content p a,
.rnt-text-content li a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 123, 255, 0.55);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.rnt-text-content p a:hover,
.rnt-text-content li a:hover {
    color: var(--accent-hover);
    text-decoration-color: rgba(51, 149, 255, 0.85);
}

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

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

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

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

.rnt-text-content li {
    margin: 0 0 8px;
    padding-left: 0.25em;
}

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

.rnt-text-content li > ul,
.rnt-text-content li > ol {
    margin: 8px 0 0;
}

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

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

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

.rnt-text-content .rnt-content-visual {
    max-width: 900px;
    margin: 0 auto 18px;
}

.rnt-text-content .rnt-content-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 1376 / 768;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

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

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

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

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

.rnt-faq__trigger:hover {
    background: rgba(0, 123, 255, 0.06);
}

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

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

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

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

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

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

.rnt-faq__item.is-open .rnt-faq__answer {
    padding-top: 14px;
}

.rnt-content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    margin: 28px 0;
}

.rnt-content-table thead th {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 700;
    padding: 13px 18px;
    text-align: left;
    border-bottom: 2px solid var(--accent);
    white-space: nowrap;
}

.rnt-content-table tbody td {
    padding: 12px 18px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}

.rnt-content-table tbody tr:hover td {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.rnt-content-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .rnt-content-table thead th,
    .rnt-content-table tbody td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

.rnt-page-cta {
    margin: 0 0 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(0, 123, 255, 0.22);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

.rnt-page-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 123, 255, 0.28), transparent 55%),
        linear-gradient(165deg, #1a2338 0%, #151b2d 48%, #182236 100%);
}

.rnt-page-cta--bonuses::before {
    background:
        radial-gradient(ellipse 85% 65% at 80% 0%, rgba(0, 184, 148, 0.12), transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 123, 255, 0.26), transparent 55%),
        linear-gradient(165deg, #1a2338 0%, #151b2d 48%, #182236 100%);
}

.rnt-page-cta--betting::before {
    background:
        radial-gradient(ellipse 70% 50% at 10% 10%, rgba(255, 159, 67, 0.1), transparent 45%),
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 123, 255, 0.24), transparent 55%),
        linear-gradient(165deg, #1a2338 0%, #151b2d 48%, #182236 100%);
}

.rnt-page-cta--games::before {
    background:
        radial-gradient(ellipse 75% 55% at 90% 20%, rgba(108, 92, 231, 0.14), transparent 48%),
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 123, 255, 0.26), transparent 55%),
        linear-gradient(165deg, #1a2338 0%, #151b2d 48%, #182236 100%);
}

.rnt-page-cta--codes::before {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 123, 255, 0.15), transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(0, 123, 255, 0.28), transparent 55%),
        linear-gradient(165deg, #1a2338 0%, #151b2d 48%, #182236 100%);
}

.rnt-page-cta__inner {
    position: relative;
    z-index: 1;
    padding: 36px 24px 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .rnt-page-cta__inner {
        padding: 44px 40px 48px;
    }
}

.rnt-page-cta__eyebrow {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.rnt-text-content .rnt-page-cta__title {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 3.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.25;
}

.rnt-page-cta__text {
    margin: 0 auto 24px;
    max-width: 34em;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.rnt-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.rnt-page-faq {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

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

.rnt-text-content .rnt-faq__question {
    margin: 0;
    padding: 0;
}

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

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

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

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

.rnt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .rnt-footer__grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 48px;
    }
}

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

.rnt-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 160px;
}

.rnt-footer__nav a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.rnt-footer__nav a:hover {
    color: var(--text-primary);
}

.rnt-footer__nav a.active {
    color: var(--accent);
}

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

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

.rnt-footer__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

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

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

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

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

.rnt-footer__bottom-links a:hover {
    color: var(--text-secondary);
}

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

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

    .rnt-header__nav,
    .rnt-header__actions {
        display: none;
    }

    .rnt-burger {
        display: flex;
    }

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

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

    .rnt-section {
        padding: 50px 0;
    }

    .rnt-section.rnt-text-content {
        padding: 40px 0 32px;
    }

    .rnt-section.rnt-section--toc {
        padding: 16px 0 20px;
    }
    .rnt-section--slots {
        padding: 20px 0 24px;
    }
    .rnt-slots-header {
        margin-bottom: 14px;
    }
    .rnt-slots-rnt-header__actions {
        width: 100%;
        justify-content: flex-end;
    }

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

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

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

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

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