/* Nitrobet surface layer - locally hosted typography */
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/nitro-media/fonts/barlow-condensed-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/nitro-media/fonts/barlow-condensed-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Public Sans';
    src: url('/nitro-media/fonts/public-sans-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Public Sans';
    src: url('/nitro-media/fonts/public-sans-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Public Sans';
    src: url('/nitro-media/fonts/public-sans-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --nitro-bg-deep: #070d11;
    --nitro-bg-panel: #0f161c;
    --nitro-bg-elevated: #141c24;
    --nitro-line: #1e2a34;
    --nitro-neon: #14e466;
    --nitro-neon-dim: #0fa84e;
    --nitro-neon-glow: rgba(20, 228, 102, 0.35);
    --nitro-amber: #f0c040;
    --nitro-text: #e8edf2;
    --nitro-text-muted: #8a9aab;
    --nitro-radius: 6px;
    --nitro-font-display: 'Barlow Condensed', system-ui, sans-serif;
    --nitro-font-body: 'Public Sans', system-ui, sans-serif;
    --nitro-rail-height: 52px;
    --nitro-topbar-height: 64px;
    --nitro-dock-size: 48px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--nitro-font-body);
    font-weight: 400;
    line-height: 1.55;
    color: var(--nitro-text);
    background: var(--nitro-bg-deep);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--nitro-neon);
    text-decoration: none;
}

a:hover {
    color: var(--nitro-amber);
}

/* -- shell frame -- */
.nitro-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* -- top bar -- */
.nitro-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--nitro-topbar-height);
    padding: 0 20px;
    background: var(--nitro-bg-panel);
    border-bottom: 1px solid var(--nitro-line);
    position: sticky;
    top: 0;
    z-index: 200;
}

.nitro-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nitro-brand img {
    max-height: 40px;
    width: auto;
}

.nitro-brand-text {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--nitro-text);
    text-transform: uppercase;
}

.nitro-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nitro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--nitro-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    text-decoration: none;
    line-height: 1.2;
}

.nitro-btn--outline {
    background: transparent;
    border-color: var(--nitro-neon);
    color: var(--nitro-neon);
}

.nitro-btn--outline:hover {
    background: rgba(20, 228, 102, 0.08);
    color: var(--nitro-neon);
    box-shadow: 0 0 12px var(--nitro-neon-glow);
}

.nitro-btn--solid {
    background: var(--nitro-neon);
    border-color: var(--nitro-neon);
    color: #041208;
}

.nitro-btn--solid:hover {
    background: #2ef07a;
    border-color: #2ef07a;
    color: #041208;
    box-shadow: 0 0 16px var(--nitro-neon-glow);
}

.nitro-btn--ghost {
    background: rgba(7, 13, 17, 0.85);
    border-color: var(--nitro-line);
    color: var(--nitro-text);
}

.nitro-btn--ghost:hover {
    border-color: var(--nitro-neon);
    color: var(--nitro-neon);
}

.nitro-btn--sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

/* -- horizontal rail nav -- */
.nitro-rail {
    background: var(--nitro-bg-elevated);
    border-bottom: 1px solid var(--nitro-line);
    position: sticky;
    top: var(--nitro-topbar-height);
    z-index: 190;
}

.nitro-rail-list {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 2px;
    padding: 0 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nitro-rail-list::-webkit-scrollbar {
    display: none;
}

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

.nitro-rail-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    color: var(--nitro-text-muted);
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.nitro-rail-link:hover {
    color: var(--nitro-neon);
}

.nitro-rail-link.is-active {
    color: var(--nitro-amber);
    border-bottom-color: var(--nitro-amber);
    background: rgba(240, 192, 64, 0.06);
}

.rail-glyph {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

/* -- main stage -- */
.nitro-stage {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}

/* -- mobile dock trigger (bottom-left) -- */
.nitro-dock-trigger {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 1000;
    width: var(--nitro-dock-size);
    height: var(--nitro-dock-size);
    padding: 0;
    background: var(--nitro-bg-panel);
    border: 1px solid var(--nitro-neon);
    border-radius: var(--nitro-radius);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px var(--nitro-neon-glow);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nitro-dock-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nitro-neon);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nitro-dock-trigger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nitro-dock-trigger.is-open span:nth-child(2) {
    opacity: 0;
}

.nitro-dock-trigger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nitro-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 180;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nitro-backdrop.is-visible {
    display: block;
    opacity: 1;
}

/* -- breadcrumbs -- */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
}

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

.breadcrumb-link:hover {
    color: var(--nitro-neon);
}

.breadcrumb-divider {
    color: var(--nitro-line);
}

/* -- hero carousel -- */
.nitro-hero-track {
    margin-bottom: 24px;
}

.nitro-hero-viewport {
    position: relative;
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    background: var(--nitro-bg-panel);
    overflow: hidden;
}

.nitro-hero-slides {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nitro-hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.nitro-hero-media {
    display: block;
    line-height: 0;
}

.nitro-hero-media picture {
    display: block;
}

.nitro-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-height: none;
}

.nitro-hero-caption {
    padding: 16px 20px;
    border-top: 1px solid var(--nitro-line);
    background: linear-gradient(180deg, var(--nitro-bg-elevated) 0%, var(--nitro-bg-panel) 100%);
}

.nitro-hero-title {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    color: var(--nitro-amber);
    margin-bottom: 6px;
    text-transform: uppercase;
}

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

.nitro-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(7, 13, 17, 0.8);
    border: 1px solid var(--nitro-neon);
    border-radius: var(--nitro-radius);
    color: var(--nitro-neon);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.nitro-hero-nav:hover {
    background: rgba(20, 228, 102, 0.15);
    box-shadow: 0 0 10px var(--nitro-neon-glow);
}

.nitro-hero-nav--prev {
    left: 8px;
}

.nitro-hero-nav--next {
    right: 8px;
}

.nitro-hero-nav svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.nitro-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 4px;
}

.nitro-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--nitro-neon);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}

.nitro-hero-dot.is-active {
    background: var(--nitro-neon);
}

/* legacy promo block compat */
.promotional-banners {
    margin-bottom: 24px;
}

.promo-banner {
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    background: var(--nitro-bg-panel);
    margin-bottom: 12px;
    overflow: hidden;
}

.promo-banner picture {
    display: block;
}

.promo-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-banner-content {
    padding: 16px 20px;
}

.promo-banner-title {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    color: var(--nitro-amber);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.promo-banner-text {
    color: var(--nitro-text-muted);
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.promo-banner-btn {
    display: inline-flex;
    padding: 9px 18px;
    background: var(--nitro-neon);
    color: #041208;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--nitro-radius);
    text-decoration: none;
}

.promo-banner-btn:hover {
    background: #2ef07a;
    color: #041208;
}

/* -- game sections -- */
.game-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--nitro-line);
}

.section-title {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--nitro-text);
}

.show-all-btn {
    padding: 6px 14px;
    border: 1px solid var(--nitro-neon);
    border-radius: var(--nitro-radius);
    color: var(--nitro-neon);
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.show-all-btn:hover {
    background: rgba(20, 228, 102, 0.1);
    box-shadow: 0 0 10px var(--nitro-neon-glow);
    color: var(--nitro-neon);
}

.games-carousel {
    overflow: hidden;
}

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

.game-card {
    background: var(--nitro-bg-panel);
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    border-color: var(--nitro-neon);
    box-shadow: 0 0 14px var(--nitro-neon-glow);
}

.game-image-wrapper {
    position: relative;
    background: var(--nitro-bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

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

.nitro-slot-actions {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(7, 13, 17, 0.82);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.game-card:hover .nitro-slot-actions,
.game-card:focus-within .nitro-slot-actions {
    opacity: 1;
}

.game-play-btn {
    display: none;
}

.game-title {
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    color: var(--nitro-text);
    border-top: 1px solid var(--nitro-line);
}

/* -- bonuses -- */
.bonuses-section {
    margin-bottom: 32px;
}

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

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nitro-neon), var(--nitro-amber));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bonus-card:hover {
    border-color: var(--nitro-neon);
    box-shadow: 0 8px 32px rgba(20, 228, 102, 0.12);
    transform: translateY(-3px);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-image-wrapper {
    background: linear-gradient(180deg, var(--nitro-bg-deep) 0%, var(--nitro-bg-elevated) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.bonus-name {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--nitro-amber);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.bonus-description {
    color: var(--nitro-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

.bonus-value {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(20, 228, 102, 0.12);
    border: 1px solid var(--nitro-neon-dim);
    border-radius: var(--nitro-radius);
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    color: var(--nitro-neon);
}

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

.bonus-category-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.35);
    border-radius: 3px;
    font-size: 0.6875rem;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--nitro-amber);
}

.bonus-terms {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--nitro-line);
    font-size: 0.75rem;
    color: var(--nitro-text-muted);
    line-height: 1.5;
}

/* -- SEO text block -- */
.text-content {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 28px 28px 32px;
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    background: var(--nitro-bg-panel);
}

.nitro-page--article .text-content {
    max-width: none;
    margin: 0;
}

.nitro-page--article {
    max-width: 920px;
    margin: 0 auto;
}

.nitro-page--article .text-content {
    padding: 32px 28px 36px;
    background: linear-gradient(180deg, var(--nitro-bg-panel) 0%, rgba(15, 22, 28, 0.95) 100%);
    border-color: var(--nitro-neon-dim);
    box-shadow: inset 0 1px 0 rgba(20, 228, 102, 0.08);
}

.text-content h1 {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    color: var(--nitro-amber);
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.25;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--nitro-line);
}

.text-content h2 {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--nitro-text);
    margin: 32px 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-left: 14px;
    border-left: 3px solid var(--nitro-neon);
}

.text-content h3 {
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--nitro-neon);
    margin: 22px 0 10px;
    letter-spacing: 0.03em;
}

.text-content p {
    margin-bottom: 16px;
    color: var(--nitro-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

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

.text-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 280px;
}

.text-content th,
.text-content td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--nitro-line);
    text-align: left;
    font-size: 0.875rem;
}

.text-content th {
    background: var(--nitro-bg-elevated);
    font-weight: 600;
    color: var(--nitro-text);
    white-space: nowrap;
}

.text-content td {
    color: var(--nitro-text-muted);
}

.text-content ul,
.text-content ol {
    margin: 14px 0;
    padding-left: 24px;
    color: var(--nitro-text-muted);
}

.text-content ul li,
.text-content ol li {
    margin-bottom: 6px;
}

.text-content a {
    color: var(--nitro-neon);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.text-content blockquote {
    margin: 16px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--nitro-neon);
    background: var(--nitro-bg-elevated);
    color: var(--nitro-text-muted);
    font-size: 0.9375rem;
}

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

.faq-item-block {
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    margin-bottom: 10px;
    background: var(--nitro-bg-elevated);
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.faq-item-block:hover {
    border-color: var(--nitro-neon-dim);
}

.faq-question-block {
    padding: 16px 18px;
    border-bottom: 1px solid var(--nitro-line);
    background: rgba(20, 228, 102, 0.04);
}

.faq-question-block strong {
    font-size: 0.9375rem;
    color: var(--nitro-text);
}

.faq-answer-block {
    padding: 14px 16px;
    color: var(--nitro-text-muted);
    font-size: 0.875rem;
}

.howto-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: var(--nitro-bg-elevated);
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
}

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

.howto-step-item {
    counter-increment: step-counter;
    padding: 14px;
    margin-bottom: 8px;
    background: var(--nitro-bg-panel);
    border-left: 3px solid var(--nitro-neon);
    border-radius: 0 var(--nitro-radius) var(--nitro-radius) 0;
}

.howto-step-item::before {
    content: counter(step-counter) ".";
    font-family: var(--nitro-font-display);
    font-weight: 700;
    color: var(--nitro-neon);
    margin-right: 8px;
}

.howto-step-item strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 6px;
    color: var(--nitro-text);
}

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

.list-container {
    margin: 16px 0;
}

/* -- payments -- */
.payment-methods-section {
    margin: 32px 0;
}

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

.payment-method-card {
    background: var(--nitro-bg-panel);
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    padding: 14px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.payment-method-card:hover {
    border-color: var(--nitro-neon);
}

.payment-method-image-wrapper {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

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

.payment-method-name {
    font-size: 0.75rem;
    color: var(--nitro-text-muted);
}

/* -- app info table -- */
.nitro-app-hero {
    position: relative;
    margin-bottom: 28px;
    padding: 28px 24px;
    background: linear-gradient(145deg, var(--nitro-bg-panel) 0%, rgba(20, 228, 102, 0.06) 50%, var(--nitro-bg-elevated) 100%);
    border: 1px solid var(--nitro-neon-dim);
    border-radius: var(--nitro-radius);
    overflow: hidden;
}

.nitro-app-hero__glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--nitro-neon-glow) 0%, transparent 70%);
    pointer-events: none;
}

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

.nitro-app-hero .app-info-table-container {
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    background: rgba(7, 13, 17, 0.6);
    backdrop-filter: blur(8px);
}

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

.app-info-table-container {
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    overflow: hidden;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
}

.app-info-row {
    border-bottom: 1px solid var(--nitro-line);
    transition: background 0.15s ease;
}

.app-info-row:hover {
    background: rgba(20, 228, 102, 0.04);
}

.app-info-row:last-child {
    border-bottom: none;
}

.app-info-label-cell {
    padding: 16px;
    text-align: center;
    background: var(--nitro-bg-elevated);
    width: 64px;
    vertical-align: top;
}

.app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background: rgba(20, 228, 102, 0.1);
    border: 1px solid var(--nitro-neon-dim);
    border-radius: var(--nitro-radius);
}

.app-info-value-cell {
    padding: 16px 20px;
    color: var(--nitro-text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    vertical-align: top;
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--nitro-neon);
}

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

.app-name-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--nitro-line);
    background: var(--nitro-bg-deep);
    padding: 4px;
    box-shadow: 0 0 16px var(--nitro-neon-glow);
}

.app-name-text {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nitro-amber);
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--nitro-neon);
    color: #041208;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--nitro-radius);
    text-decoration: none;
    box-shadow: 0 0 18px var(--nitro-neon-glow);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.app-download-link:hover {
    background: #2ef07a;
    color: #041208;
    box-shadow: 0 0 24px var(--nitro-neon-glow);
    transform: translateY(-1px);
}

/* -- footer -- */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--nitro-bg-elevated) 0%, var(--nitro-bg-panel) 40%, #0a1218 100%);
    border-top: 1px solid var(--nitro-line);
    margin-top: auto;
    overflow: hidden;
}

.footer-glow-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--nitro-neon) 20%, var(--nitro-amber) 50%, var(--nitro-neon) 80%, transparent 100%);
    box-shadow: 0 0 24px var(--nitro-neon-glow);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nitro-line);
}

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

.footer-brand-logo {
    max-height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px var(--nitro-neon-glow));
}

.footer-brand-text {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nitro-text);
}

.footer-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--nitro-radius);
    border: 1px solid transparent;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.footer-cta--primary {
    background: var(--nitro-neon);
    border-color: var(--nitro-neon);
    color: #041208;
}

.footer-cta--primary:hover {
    background: #2ef07a;
    box-shadow: 0 0 16px var(--nitro-neon-glow);
    color: #041208;
}

.footer-cta--secondary {
    background: transparent;
    border-color: var(--nitro-line);
    color: var(--nitro-text);
}

.footer-cta--secondary:hover {
    border-color: var(--nitro-neon);
    color: var(--nitro-neon);
}

.footer-cta--accent {
    background: rgba(240, 192, 64, 0.12);
    border-color: var(--nitro-amber);
    color: var(--nitro-amber);
}

.footer-cta--accent:hover {
    background: rgba(240, 192, 64, 0.22);
    box-shadow: 0 0 14px rgba(240, 192, 64, 0.25);
    color: var(--nitro-amber);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

.footer-col {
    min-width: 0;
}

.footer-block-heading {
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nitro-amber);
    margin-bottom: 14px;
    position: relative;
    padding-left: 12px;
}

.footer-block-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: var(--nitro-neon);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--nitro-neon-glow);
}

.footer-block-heading--center {
    text-align: center;
    padding-left: 0;
}

.footer-block-heading--center::before {
    display: none;
}

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

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

.footer-links a {
    color: var(--nitro-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--nitro-neon);
    padding-left: 4px;
}

.footer-links--social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links--social li {
    margin-bottom: 0;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
}

.footer-social-chip {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(20, 228, 102, 0.08);
    border: 1px solid var(--nitro-neon-dim);
    border-radius: var(--nitro-radius);
    font-family: var(--nitro-font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--nitro-neon);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.footer-social-link:hover .footer-social-chip {
    background: rgba(20, 228, 102, 0.16);
    box-shadow: 0 0 12px var(--nitro-neon-glow);
    color: var(--nitro-neon);
}

.footer-social-image {
    max-height: 28px;
    width: auto;
}

.footer-payments {
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(7, 13, 17, 0.5);
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
}

.footer-payments-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.footer-pay-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 96px;
    padding: 12px 14px;
    background: var(--nitro-bg-panel);
    border: 1px solid var(--nitro-line);
    border-radius: var(--nitro-radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-pay-chip:hover {
    border-color: var(--nitro-neon);
    box-shadow: 0 0 14px var(--nitro-neon-glow);
    transform: translateY(-2px);
}

.footer-pay-img {
    max-width: 72px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-pay-name {
    font-size: 0.6875rem;
    color: var(--nitro-text-muted);
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--nitro-line);
}

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

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

.footer-safe-links li {
    margin: 0;
}

.safe-image {
    max-width: 90px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.safe-image:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--nitro-text-muted);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* -- 404 page -- */
.nitro-error-panel {
    position: relative;
    text-align: center;
    padding: 72px 24px 80px;
    max-width: 520px;
    margin: 0 auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nitro-error-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.nitro-error-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(20, 228, 102, 0.25);
    animation: nitro-error-pulse 3s ease-in-out infinite;
}

.nitro-error-ring--delay {
    width: 220px;
    height: 220px;
    border-color: rgba(240, 192, 64, 0.2);
    animation-delay: 1.5s;
}

@keyframes nitro-error-pulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

.nitro-error-code {
    position: relative;
    z-index: 1;
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 6.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--nitro-neon) 0%, var(--nitro-amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 24px var(--nitro-neon-glow));
    letter-spacing: 0.04em;
}

.nitro-error-title {
    position: relative;
    z-index: 1;
    font-family: var(--nitro-font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--nitro-text);
    margin-bottom: 14px;
    line-height: 1.4;
}

.nitro-error-desc {
    position: relative;
    z-index: 1;
    color: var(--nitro-text-muted);
    margin-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 400px;
}

.nitro-error-btn {
    position: relative;
    z-index: 1;
    min-width: 200px;
    box-shadow: 0 0 20px var(--nitro-neon-glow);
}

/* -- contact page -- */
.nitro-page--contact {
    max-width: 680px;
    margin: 0 auto;
}

.nitro-page--contact .text-content {
    max-width: none;
    margin: 0;
    padding: 36px 32px;
    background: linear-gradient(160deg, var(--nitro-bg-panel) 0%, rgba(20, 228, 102, 0.04) 100%);
    border: 1px solid var(--nitro-neon-dim);
    box-shadow: 0 0 40px rgba(20, 228, 102, 0.08);
}

.nitro-page--contact .text-content h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--nitro-neon), var(--nitro-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nitro-page--contact .text-content h2 {
    color: var(--nitro-amber);
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--nitro-line);
}

.nitro-page--contact .text-content h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 6px 12px;
    background: rgba(20, 228, 102, 0.08);
    border-radius: var(--nitro-radius);
    border-left: 3px solid var(--nitro-neon);
}

.nitro-page--contact .text-content h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--nitro-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--nitro-neon-glow);
}

.nitro-page--contact .text-content p {
    font-size: 1rem;
    line-height: 1.65;
}

.nitro-page--contact .text-content a {
    font-weight: 600;
    padding: 2px 0;
    border-bottom: 1px dashed var(--nitro-neon-dim);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nitro-page--contact .text-content a:hover {
    color: var(--nitro-amber);
    border-bottom-color: var(--nitro-amber);
}

/* -- legal pages (privacy, terms) -- */
.nitro-page--legal {
    max-width: 860px;
    margin: 0 auto;
}

.nitro-page--legal .text-content {
    max-width: none;
    margin: 0;
    padding: 36px 32px 40px;
    background: linear-gradient(180deg, var(--nitro-bg-panel) 0%, var(--nitro-bg-elevated) 100%);
    border: 1px solid var(--nitro-line);
    border-top: 3px solid var(--nitro-neon);
}

.nitro-page--legal .text-content h1 {
    font-size: 1.75rem;
    color: var(--nitro-amber);
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--nitro-line);
}

.nitro-page--legal .text-content h2 {
    color: var(--nitro-text);
    margin-top: 32px;
    padding-left: 14px;
    border-left: 3px solid var(--nitro-neon);
}

.nitro-page--legal .text-content h3 {
    color: var(--nitro-neon);
    margin-top: 24px;
}

.nitro-page--legal .text-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.nitro-page--legal .text-content ul,
.nitro-page--legal .text-content ol {
    padding-left: 20px;
}

.nitro-page--legal .text-content li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.nitro-page--legal .text-content li::marker {
    color: var(--nitro-neon);
}

.nitro-page--legal .text-content blockquote {
    border-left-color: var(--nitro-amber);
    background: rgba(240, 192, 64, 0.06);
}

.nitro-page--legal .table-wrapper {
    border-color: var(--nitro-neon-dim);
}

.nitro-page--legal .text-content th {
    color: var(--nitro-amber);
}

/* legacy btn compat */
.btn-primary {
    display: inline-flex;
    padding: 9px 18px;
    background: var(--nitro-neon);
    color: #041208;
    font-family: var(--nitro-font-display);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--nitro-radius);
    text-decoration: none;
    border: none;
}

.btn-primary:hover {
    background: #2ef07a;
    color: #041208;
}

/* hide legacy mobile elements */
.mobile-burger,
.mobile-overlay,
.sidebar-navigation,
.top-header-bar,
.main-content-wrapper {
    display: none !important;
}

/* -- responsive -- */
@media (max-width: 992px) {
    .nitro-dock-trigger {
        display: flex;
    }

    .nitro-rail {
        position: fixed;
        top: 0;
        left: 0;
        width: min(280px, 85vw);
        height: 100vh;
        z-index: 190;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: 1px solid var(--nitro-line);
        border-bottom: none;
        padding-top: var(--nitro-topbar-height);
    }

    .nitro-rail.is-drawer-open {
        transform: translateX(0);
    }

    .nitro-rail-list {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 8px 0;
        height: calc(100vh - var(--nitro-topbar-height));
    }

    .nitro-rail-link {
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 14px 20px;
    }

    .nitro-rail-link.is-active {
        border-left-color: var(--nitro-amber);
        border-bottom-color: transparent;
    }

    .nitro-stage {
        padding: 16px 14px 72px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .nitro-slot-actions {
        opacity: 1;
        background: rgba(7, 13, 17, 0.55);
    }

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

    .nitro-hero-nav {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .nitro-topbar {
        padding: 0 12px;
        height: 56px;
    }

    .nitro-topbar-actions .nitro-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

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

    .text-content h1 {
        font-size: 1.375rem;
    }

    .text-content h2 {
        font-size: 1.0625rem;
    }

    .text-content h3 {
        font-size: 0.9375rem;
    }

    .table-wrapper table {
        width: max-content;
        min-width: 100%;
    }

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

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

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

    .footer-cta {
        flex: 1 1 auto;
        text-align: center;
    }

    .footer-payments-track {
        gap: 8px;
    }

    .footer-pay-chip {
        min-width: 80px;
        padding: 10px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
