@font-face {
    font-family: "OutfitLocal";
    src: url("/static/ui/fonts/outfit-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("/static/ui/fonts/outfit-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IbmPlexLocal";
    src: url("/static/ui/fonts/ibm-plex-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IbmPlexLocal";
    src: url("/static/ui/fonts/ibm-plex-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --rl-bg-deep: #071420;
    --rl-bg-panel: #0c2233;
    --rl-bg-card: #102636;
    --rl-accent: #3ef0a7;
    --rl-accent-dark: #042018;
    --rl-text-main: #e8f0f7;
    --rl-text-muted: #9eb2c4;
    --rl-line: rgba(62, 240, 167, 0.12);
    --rl-radius: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "IbmPlexLocal", "Segoe UI", sans-serif;
    line-height: 1.65;
    color: var(--rl-text-main);
    background: var(--rl-bg-deep);
}

body.rl-drawer-active {
    overflow: hidden;
}

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

a {
    color: inherit;
}

.rl-page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.rl-top-zone {
    position: sticky;
    top: 0;
    z-index: 120;
    background: linear-gradient(180deg, #0a2030 0%, var(--rl-bg-deep) 100%);
    border-bottom: 1px solid var(--rl-line);
}

.rl-top-zone__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
}

.rl-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.rl-brand-image {
    display: block;
    width: auto;
    max-height: 38px;
}

.rl-brand-text {
    color: #fff;
    font-family: "OutfitLocal", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.rl-auth-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.rl-action,
.btn-primary,
.promo-banner-btn,
.show-all-btn,
.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 6px;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rl-action--outline,
.show-all-btn {
    color: #fff;
    border: 1px solid rgba(62, 240, 167, 0.45);
    background: transparent;
}

.rl-action--outline:hover,
.show-all-btn:hover {
    border-color: var(--rl-accent);
    color: var(--rl-accent);
}

.rl-action--accent,
.btn-primary,
.promo-banner-btn,
.app-download-link {
    color: var(--rl-accent-dark);
    background: var(--rl-accent);
    border: 1px solid var(--rl-accent);
}

.rl-action--accent:hover,
.btn-primary:hover,
.promo-banner-btn:hover,
.app-download-link:hover {
    background: #62f7ba;
}

.rl-nav-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.rl-nav-strip::-webkit-scrollbar {
    display: none;
}

.rl-nav-strip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 2px;
    min-width: max-content;
}

.rl-nav-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px 13px;
    color: #b8c9d8;
    text-decoration: none;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.rl-nav-strip__link:hover,
.rl-nav-strip__link.is-current {
    color: var(--rl-accent);
    border-bottom-color: var(--rl-accent);
}

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

.main-content-wrapper {
    flex: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 0.8125rem;
}

.breadcrumb-link {
    color: var(--rl-text-muted);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: var(--rl-accent);
}

.breadcrumb-divider {
    color: rgba(255, 255, 255, 0.25);
}

.hero-slider {
    position: relative;
    margin-bottom: 24px;
    border-radius: calc(var(--rl-radius) + 2px);
    overflow: hidden;
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
}

.hero-slider__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 520;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slider__link,
.hero-slider__frame {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slider__picture,
.hero-slider__picture img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slider__picture img {
    object-fit: contain;
    object-position: center;
    background: radial-gradient(circle at 50% 40%, rgba(62, 240, 167, 0.08), transparent 60%);
}

.hero-slider__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent, rgba(7, 20, 32, 0.92));
}

.hero-slider__title {
    font-family: "OutfitLocal", sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-slider__text {
    color: var(--rl-text-muted);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.hero-slider__dot.is-active {
    background: var(--rl-accent);
    transform: scale(1.15);
}

.game-section,
.bonuses-section,
.payment-methods-section {
    margin-bottom: 28px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.section-title,
.bonus-name,
.game-title,
.payment-method-name {
    font-family: "OutfitLocal", sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #fff;
}

.games-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.games-grid {
    display: flex;
    gap: 14px;
    min-width: min-content;
    padding-bottom: 4px;
}

.game-card {
    flex: 0 0 148px;
    width: 148px;
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
    border-radius: var(--rl-radius);
    overflow: hidden;
}

.game-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #081018;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.game-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

.slot-action-btn {
    min-height: 34px;
    padding: 0 8px;
    border-radius: 6px;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slot-action-btn--demo {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.slot-action-btn--play {
    color: var(--rl-accent-dark);
    background: var(--rl-accent);
    border: 1px solid var(--rl-accent);
}

.game-title {
    padding: 0 10px 10px;
    font-size: 0.8125rem;
    text-align: center;
    color: #fff;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(16, 38, 54, 0.98), rgba(10, 26, 38, 0.98));
    border: 1px solid var(--rl-line);
    border-radius: calc(var(--rl-radius) + 2px);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 240, 167, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(62, 240, 167, 0.08);
}

.bonus-image-wrapper {
    position: relative;
    background: #081018;
    overflow: hidden;
}

.bonus-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 20, 32, 0.85) 100%);
    pointer-events: none;
}

.bonus-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.35s ease;
}

.bonus-card:hover .bonus-image {
    transform: scale(1.04);
}

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

.bonus-name {
    font-family: "OutfitLocal", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.bonus-description {
    color: var(--rl-text-muted);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.bonus-value {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(62, 240, 167, 0.1);
    border: 1px solid rgba(62, 240, 167, 0.25);
    color: var(--rl-accent);
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.875rem;
}

.bonus-value strong {
    font-weight: 700;
}

.bonus-category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #b8c9d8;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bonus-terms {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--rl-text-muted);
    font-size: 0.6875rem;
    line-height: 1.5;
}

.bonus-page-shell .text-content--rich {
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid var(--rl-line);
}

.text-content--rich {
    position: relative;
}

.text-content__title {
    position: relative;
    padding-bottom: 16px;
}

.text-content__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rl-accent), transparent);
}

.text-lead {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #d4e0ea;
}

.text-section-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px !important;
    padding: 12px 0 12px 14px;
    border-left: 3px solid var(--rl-accent);
    background: linear-gradient(90deg, rgba(62, 240, 167, 0.07), transparent 80%);
}

.text-subheading {
    margin-top: 24px;
    color: var(--rl-accent);
}

.text-paragraph a {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(62, 240, 167, 0.35);
    text-underline-offset: 3px;
}

.text-paragraph a:hover {
    text-decoration-color: var(--rl-accent);
}

.text-content-figure {
    margin: 20px 0;
}

.text-content-img {
    display: block;
    width: 100%;
    border-radius: var(--rl-radius);
    border: 1px solid var(--rl-line);
}

.faq-wrapper {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.faq-item-block {
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item-block:hover {
    border-color: rgba(62, 240, 167, 0.25);
}

.faq-question-block strong {
    font-family: "OutfitLocal", sans-serif;
    color: #fff;
}

.howto-step-item strong {
    display: block;
    margin-bottom: 6px;
    font-family: "OutfitLocal", sans-serif;
    color: var(--rl-accent);
}

.howto-step-item p {
    margin: 0;
    color: var(--rl-text-muted);
    font-size: 0.875rem;
}

.list-container ul,
.list-container ol {
    padding-left: 1.2rem;
}

.list-container li {
    margin-bottom: 8px;
    color: #c5d4e0;
}

.list-container li::marker {
    color: var(--rl-accent);
}

.text-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 0 8px;
}

.text-content h1 {
    font-family: "OutfitLocal", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.25;
    margin-bottom: 18px;
}

.text-content h2 {
    font-family: "OutfitLocal", sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    margin: 28px 0 12px;
}

.text-content h3 {
    font-family: "OutfitLocal", sans-serif;
    font-size: 1.05rem;
    margin: 22px 0 10px;
}

.text-content p {
    margin-bottom: 14px;
    color: #d4e0ea;
}

.text-content a {
    color: var(--rl-accent);
}

.text-content img {
    border-radius: var(--rl-radius);
    margin: 16px 0;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border: 1px solid var(--rl-line);
    border-radius: var(--rl-radius);
    background: var(--rl-bg-card);
}

.text-content table,
.app-info-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.text-content th,
.text-content td,
.app-info-row td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--rl-line);
    text-align: left;
}

.text-content th {
    background: rgba(255, 255, 255, 0.04);
    font-family: "OutfitLocal", sans-serif;
}

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

.text-content blockquote,
.faq-item-block,
.howto-step-item {
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
    border-radius: var(--rl-radius);
}

.text-content blockquote {
    padding: 16px;
    border-left: 3px solid var(--rl-accent);
}

.faq-question-block {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rl-line);
}

.faq-answer-block {
    padding: 14px 16px;
    color: var(--rl-text-muted);
}

.howto-wrapper {
    margin: 18px 0;
}

.howto-steps-list {
    list-style: none;
    padding: 0;
}

.howto-step-item {
    padding: 14px 16px;
    margin-bottom: 10px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.payment-method-card {
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
    border-radius: var(--rl-radius);
    padding: 14px 10px;
    text-align: center;
}

.payment-method-image {
    max-height: 34px;
    width: auto;
    object-fit: contain;
}

.payment-method-name {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--rl-text-muted);
}

.app-info-table-wrapper {
    position: relative;
    z-index: 2;
    margin: 0;
}

.app-hero-shell {
    position: relative;
    margin-bottom: 28px;
    padding: 28px 24px 24px;
    border-radius: calc(var(--rl-radius) + 6px);
    background:
        radial-gradient(circle at 85% 20%, rgba(62, 240, 167, 0.14), transparent 42%),
        linear-gradient(145deg, rgba(16, 38, 54, 0.98), rgba(8, 22, 34, 0.98));
    border: 1px solid rgba(62, 240, 167, 0.18);
    overflow: hidden;
}

.app-hero-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 240, 167, 0.12), transparent 68%);
    pointer-events: none;
}

.app-hero-device {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 110px;
    height: 210px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #132636, #081018);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0.45;
    pointer-events: none;
}

.app-hero-device__screen {
    position: absolute;
    inset: 10px 8px 14px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(62, 240, 167, 0.15), transparent 40%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 16px);
    border: 1px solid rgba(62, 240, 167, 0.15);
}

.app-info-table-container {
    margin: 0;
    border: 0;
    background: transparent;
}

.app-info-table {
    min-width: 0;
}

.app-info-row td {
    vertical-align: top;
}

.app-info-label-cell {
    width: 52px;
    padding-top: 16px !important;
}

.app-info-label-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(62, 240, 167, 0.08);
    border: 1px solid rgba(62, 240, 167, 0.2);
}

.app-info-value-cell {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    color: #d4e0ea;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.app-info-row:first-child .app-info-value-cell .app-name-text {
    font-family: "OutfitLocal", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.app-info-row:last-child .app-info-value-cell {
    padding-bottom: 8px !important;
}

.app-info-icon {
    width: 20px;
    height: 20px;
    color: var(--rl-accent);
}

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

.app-name-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    padding: 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(62, 240, 167, 0.2);
}

.app-download-link {
    min-width: 200px;
    box-shadow: 0 10px 28px rgba(62, 240, 167, 0.25);
}

@media (max-width: 768px) {
    .app-hero-shell {
        padding: 20px 16px 16px;
    }

    .app-hero-device {
        display: none;
    }

    .app-info-table,
    .text-content table {
        min-width: 0;
    }

    .app-info-row {
        display: block;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .app-info-row td {
        display: block;
        width: 100%;
        padding: 6px 0 !important;
        border: 0;
    }

    .app-info-label-cell {
        width: auto;
        padding-top: 0 !important;
    }
}

.site-footer {
    position: relative;
    margin-top: auto;
    padding: 0 20px 28px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(62, 240, 167, 0.08), transparent 55%),
        linear-gradient(180deg, #081824 0%, #040c14 100%);
    border-top: 1px solid var(--rl-line);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(62, 240, 167, 0.45), transparent);
}

.footer-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 36px 0 28px;
    text-align: center;
}

.footer-brand-link {
    display: inline-flex;
    text-decoration: none;
}

.footer-brand-image {
    max-height: 38px;
    width: auto;
    filter: drop-shadow(0 4px 18px rgba(62, 240, 167, 0.18));
}

.footer-quick-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-decoration: none;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-quick-pill:hover {
    border-color: rgba(62, 240, 167, 0.45);
    background: rgba(62, 240, 167, 0.08);
    color: var(--rl-accent);
    transform: translateY(-1px);
}

.footer-pill-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--rl-accent);
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-cta-btn--primary,
.footer-cta-btn--accent {
    color: var(--rl-accent-dark);
    background: var(--rl-accent);
    border: 1px solid var(--rl-accent);
}

.footer-cta-btn--primary:hover,
.footer-cta-btn--accent:hover {
    background: #62f7ba;
    transform: translateY(-1px);
}

.footer-cta-btn--ghost {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-cta-btn--ghost:hover {
    border-color: var(--rl-accent);
    color: var(--rl-accent);
}

.footer-payments-band {
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-payments-band__title {
    margin-bottom: 16px;
    text-align: center;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rl-text-muted);
}

.footer-payments-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 10px;
}

.footer-payment-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-payment-tile:hover {
    border-color: rgba(62, 240, 167, 0.28);
    background: rgba(62, 240, 167, 0.05);
    transform: translateY(-2px);
}

.footer-payment-logo {
    max-height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.15) brightness(1.05);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
    padding: 28px 0 8px;
}

.footer-column--social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-title {
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: var(--rl-text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--rl-accent);
}

.footer-social-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-social-btn:hover {
    border-color: rgba(62, 240, 167, 0.45);
    background: rgba(62, 240, 167, 0.1);
    color: var(--rl-accent);
    transform: translateY(-2px);
}

.footer-social-glyph,
.footer-social-image {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.safe-image {
    max-height: 34px;
    width: auto;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid var(--rl-line);
    text-align: center;
}

.footer-safe {
    margin-bottom: 18px;
}

.footer-safe__label {
    margin-bottom: 12px;
    font-family: "OutfitLocal", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-text-muted);
}

.footer-safe-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-disclaimer {
    max-width: 760px;
    margin: 0 auto 10px;
    color: #d4e0ea;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.footer-copyright {
    margin: 0;
    color: var(--rl-text-muted);
    font-size: 0.75rem;
}

.error-page-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 280px);
    text-align: center;
    padding: 48px 20px 64px;
    overflow: hidden;
}

.error-page-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.error-page-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    transform: translate(-50%, -58%);
    border-radius: 50%;
    border: 1px solid rgba(62, 240, 167, 0.14);
    box-shadow:
        0 0 80px rgba(62, 240, 167, 0.08),
        inset 0 0 60px rgba(62, 240, 167, 0.04);
}

.error-page-ring::before,
.error-page-ring::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px dashed rgba(62, 240, 167, 0.18);
}

.error-page-ring::after {
    inset: 34%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.06);
}

.error-page-chip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -58%) rotate(12deg);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.25), transparent 40%),
        linear-gradient(145deg, #1a3340, #0d1f2a);
    border: 3px dashed rgba(62, 240, 167, 0.55);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0.55;
}

.error-page-code {
    position: relative;
    z-index: 1;
    font-family: "OutfitLocal", sans-serif;
    font-size: clamp(4.5rem, 18vw, 7.5rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, var(--rl-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 8px 28px rgba(62, 240, 167, 0.25));
}

.error-page-title {
    position: relative;
    z-index: 1;
    max-width: 520px;
    font-family: "OutfitLocal", sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #fff;
}

.error-page-text {
    position: relative;
    z-index: 1;
    max-width: 460px;
    color: var(--rl-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.error-page-btn {
    position: relative;
    z-index: 1;
    min-width: 220px;
    box-shadow: 0 10px 32px rgba(62, 240, 167, 0.28);
}

.contact-page-shell .text-content {
    max-width: 720px;
    padding-top: 12px;
}

.contact-page-shell .text-content h1 {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 18px;
}

.contact-page-shell .text-content h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--rl-accent), transparent);
}

.contact-page-shell .text-content > p:first-of-type {
    text-align: center;
    color: var(--rl-text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.contact-page-shell .text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 14px 18px;
    border-radius: var(--rl-radius);
    background: linear-gradient(90deg, rgba(62, 240, 167, 0.12), rgba(62, 240, 167, 0.02));
    border: 1px solid rgba(62, 240, 167, 0.2);
    color: var(--rl-accent);
}

.contact-page-shell .text-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 16px 18px 0;
    border-radius: var(--rl-radius) var(--rl-radius) 0 0;
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
    border-bottom: 0;
}

.contact-page-shell .text-content h3::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rl-accent);
    box-shadow: 0 0 12px rgba(62, 240, 167, 0.6);
    flex-shrink: 0;
}

.contact-page-shell .text-content h3 + p {
    margin: 0 0 18px;
    padding: 12px 18px 18px;
    border-radius: 0 0 var(--rl-radius) var(--rl-radius);
    background: var(--rl-bg-card);
    border: 1px solid var(--rl-line);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: #d4e0ea;
}

.contact-page-shell .text-content h3 + p a {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(62, 240, 167, 0.1);
    border: 1px solid rgba(62, 240, 167, 0.25);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-page-shell .text-content h3 + p a:hover {
    background: rgba(62, 240, 167, 0.18);
    border-color: var(--rl-accent);
}

.legal-page-shell .text-content {
    max-width: 820px;
    padding: 16px 24px 32px;
    border-radius: calc(var(--rl-radius) + 4px);
    background:
        linear-gradient(180deg, rgba(16, 38, 54, 0.92) 0%, rgba(10, 28, 40, 0.96) 100%);
    border: 1px solid var(--rl-line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.legal-page-shell .text-content h1 {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rl-line);
}

.legal-page-shell .text-content h1::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--rl-accent);
}

.legal-page-shell .text-content > p:first-of-type {
    font-size: 1rem;
    color: #d4e0ea;
    line-height: 1.7;
}

.legal-page-shell .text-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding: 12px 0 12px 14px;
    border-left: 3px solid var(--rl-accent);
    background: linear-gradient(90deg, rgba(62, 240, 167, 0.08), transparent);
    color: #fff;
}

.legal-page-shell .text-content h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rl-accent);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(62, 240, 167, 0.5);
}

.legal-page-shell .text-content h3 {
    margin-top: 24px;
    color: var(--rl-accent);
    font-size: 1rem;
}

.legal-page-shell .text-content .list-container {
    margin: 14px 0 20px;
    padding: 14px 18px;
    border-radius: var(--rl-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-page-shell .text-content .list-container li {
    margin-bottom: 8px;
    color: #c5d4e0;
}

.legal-page-shell .text-content .list-container li::marker {
    color: var(--rl-accent);
}

.legal-page-shell .text-content blockquote {
    margin: 20px 0;
    background: rgba(62, 240, 167, 0.05);
    border-left-color: var(--rl-accent);
}

@media (max-width: 992px) {
    .rl-top-zone__row {
        padding: 10px 14px;
    }

    .rl-nav-strip {
        display: none;
    }

    .main-content-wrapper {
        padding: 14px 14px 92px;
    }

    .site-footer {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .rl-auth-cluster {
        gap: 6px;
    }

    .rl-action {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.75rem;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .hero-slider__viewport {
        aspect-ratio: 750 / 420;
    }

    .rl-slide-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 320px);
        height: 100%;
        z-index: 200;
        background: var(--rl-bg-panel);
        border-right: 1px solid rgba(62, 240, 167, 0.15);
        transform: translateX(-105%);
        transition: transform 0.28s ease;
        display: flex;
        flex-direction: column;
    }

    .rl-slide-panel.is-open {
        transform: translateX(0);
    }

    .rl-slide-panel__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .rl-slide-panel__title {
        font-family: "OutfitLocal", sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .rl-slide-panel__close {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .rl-slide-panel__close svg {
        width: 18px;
        height: 18px;
    }

    .rl-slide-panel__nav {
        overflow-y: auto;
        flex: 1;
        padding: 8px 0 24px;
    }

    .rl-slide-panel__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .rl-slide-panel__link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        color: #c5d4e0;
        text-decoration: none;
        font-size: 0.9375rem;
        font-weight: 600;
    }

    .rl-slide-panel__link.is-current,
    .rl-slide-panel__link:hover {
        color: var(--rl-accent);
        background: rgba(62, 240, 167, 0.08);
    }

    .rl-drawer-shade {
        position: fixed;
        inset: 0;
        z-index: 190;
        background: rgba(2, 10, 18, 0.72);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    .rl-drawer-shade.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .rl-mobile-dock {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 130;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: end;
        gap: 2px;
        padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(8, 24, 36, 0.2) 0%, #071420 35%);
        border-top: 1px solid var(--rl-line);
        backdrop-filter: blur(10px);
    }

    .rl-mobile-dock__btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 54px;
        padding: 4px 2px;
        border: 0;
        background: transparent;
        color: var(--rl-text-muted);
        text-decoration: none;
        font-size: 0.625rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        cursor: pointer;
    }

    .rl-mobile-dock__btn--menu.is-active,
    .rl-mobile-dock__btn:hover {
        color: var(--rl-accent);
    }

    .rl-mobile-dock__btn--deposit {
        color: var(--rl-accent-dark);
        background: var(--rl-accent);
        border-radius: 50%;
        width: 52px;
        height: 52px;
        margin: 0 auto 2px;
        box-shadow: 0 8px 24px rgba(62, 240, 167, 0.35);
    }

    .rl-mobile-dock__btn--deposit span {
        display: none;
    }

    .rl-mobile-dock__glyph {
        width: 22px;
        height: 22px;
    }

    .game-card {
        flex-basis: 132px;
        width: 132px;
    }
}

@media (min-width: 993px) {
    .rl-slide-panel,
    .rl-drawer-shade,
    .rl-mobile-dock {
        display: none;
    }

    .rl-top-zone {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "brand nav auth";
        align-items: center;
        gap: 16px;
        padding: 12px 20px;
    }

    .rl-top-zone__row {
        display: contents;
    }

    .rl-brand-slot {
        grid-area: brand;
    }

    .rl-nav-strip {
        grid-area: nav;
        display: flex;
        justify-content: center;
        min-width: 0;
    }

    .rl-nav-strip__list {
        justify-content: center;
    }

    .rl-auth-cluster {
        grid-area: auth;
    }
}

@media (max-width: 768px) {
    .hero-slider__caption {
        position: static;
        padding: 14px;
        background: var(--rl-bg-card);
    }

    .hero-slider__dots {
        position: static;
        transform: none;
        justify-content: center;
        padding: 0 0 12px;
    }
}
