/* Vavada-inspired dark casino shell - unique layout tokens */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --shell-bg: #151622;
    --shell-surface: #1c1d2b;
    --shell-panel: #232436;
    --shell-border: #2e3048;
    --shell-text: #e8eaf4;
    --shell-muted: #8b8fa8;
    --accent-pink: #ff0066;
    --accent-red: #e8194a;
    --accent-green: #00c853;
    --accent-gold: #ffc107;
    --accent-purple: #9b59ff;
    --header-h: 56px;
    --nav-h: 72px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --font-main: 'Outfit', system-ui, sans-serif;
    --banner-desk-w: 768px;
    --banner-desk-h: 240px;
    --banner-mob-w: 250px;
    --banner-mob-h: 250px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.55;
    color: var(--shell-text);
    background: var(--shell-bg);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(155, 89, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 102, 0.03) 0%, transparent 50%);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Portal shell ── */
.portal-root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Masthead ── */
.masthead {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(21, 22, 34, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--shell-border);
}

.masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: var(--header-h);
    gap: 16px;
}

.brand-mark a {
    display: flex;
    align-items: center;
}

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

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

.masthead-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    color: var(--shell-text);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.btn-login:hover {
    color: #fff;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 20px;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-register:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-help {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.8125rem;
    font-weight: 500;
}

.btn-help-icon {
    width: 22px;
    height: 22px;
    background: var(--accent-gold);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ── Category strip (horizontal nav under header) ── */
.category-strip {
    background: var(--shell-surface);
    border-bottom: 1px solid var(--shell-border);
    position: sticky;
    top: var(--header-h);
    z-index: 850;
}

.category-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-strip-inner::-webkit-scrollbar {
    display: none;
}

.cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    min-width: 100px;
    color: var(--shell-muted);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-link:hover {
    color: var(--shell-text);
    background: rgba(255, 255, 255, 0.03);
}

.cat-link.is-active {
    color: var(--shell-text);
    border-bottom-color: var(--accent-pink);
}

.cat-link-icon {
    width: 32px;
    height: 32px;
}

.masthead-inner:not(:has(.brand-mark)) .masthead-actions {
    margin-left: auto;
}

@media (min-width: 769px) {
    .masthead-inner:not(:has(.brand-mark)) {
        justify-content: flex-end;
    }
}

.page-stage {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 20px 40px;
}

/* ── Breadcrumbs ── */
.breadcrumb-nav {
    margin: 0 0 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
}

.breadcrumb-link {
    color: var(--shell-muted);
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--shell-text);
}

.breadcrumb-divider {
    color: var(--shell-border);
}

/* ── Promotional banners ── */
.promotional-banners {
    margin-bottom: 24px;
}

.promo-banner {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.promo-banner picture {
    display: block;
    line-height: 0;
}

.promo-banner-image {
    width: var(--banner-desk-w);
    max-width: 100%;
    height: auto;
    aspect-ratio: 768 / 240;
    object-fit: cover;
    margin: 0 auto;
}

.promo-banner-content {
    display: none;
}

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

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

.section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--shell-text);
}

.show-all-btn {
    padding: 6px 14px;
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-sm);
    color: var(--shell-muted);
    font-size: 0.75rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

.show-all-btn:hover {
    border-color: var(--accent-pink);
    color: var(--shell-text);
}

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

@media (min-width: 769px) {
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

.tile-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tile-image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.tile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.tile-card:hover .tile-overlay {
    opacity: 1;
}

.tile-play-btn {
    padding: 8px 24px;
    background: var(--accent-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
}

.tile-demo-btn {
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--shell-text);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tile-label {
    padding: 8px 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--shell-text);
    background: var(--shell-panel);
}

.game-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.game-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.game-image-wrapper img,
.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hover-layer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s;
}

.game-card:hover .game-hover-layer {
    opacity: 1;
}

.game-play-btn {
    padding: 8px 24px;
    background: var(--accent-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 0.04em;
    text-align: center;
}

.game-demo-btn {
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--shell-text);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.game-title {
    padding: 8px 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
}

.load-more-wrap {
    text-align: center;
    margin: 24px 0;
}

.load-more-btn {
    display: inline-block;
    padding: 12px 48px;
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    border-radius: 24px;
    color: var(--shell-text);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.load-more-btn:hover {
    background: var(--shell-border);
}

/* ── Bonuses ── */
.bonuses-section {
    margin-bottom: 36px;
}

.bonuses-section .section-header {
    margin-bottom: 20px;
}

.bonuses-section .section-title {
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--shell-text), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.bonus-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--shell-panel) 0%, rgba(28, 29, 43, 0.95) 100%);
    border: 1px solid var(--shell-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 102, 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(255, 0, 102, 0.08);
}

.bonus-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.bonus-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(21, 22, 34, 0.85) 100%);
    pointer-events: none;
}

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

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

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

.bonus-name {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--shell-text);
}

.bonus-description {
    font-size: 0.8125rem;
    color: var(--shell-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bonus-value {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--accent-gold);
    padding: 6px 14px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 20px;
    letter-spacing: 0.01em;
}

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

.bonus-category {
    margin-top: 2px;
}

.bonus-category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(155, 89, 255, 0.2), rgba(255, 0, 102, 0.12));
    color: var(--accent-purple);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(155, 89, 255, 0.2);
}

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

.bonus-terms small {
    font-size: inherit;
}

.page-stage--bonusy .text-content {
    margin-top: 0;
}

/* ── SEO text content block ── */
.text-content {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 32px 28px;
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.5) 0%, rgba(28, 29, 43, 0.8) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--shell-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.text-content h1 {
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--shell-border);
    color: var(--shell-text);
    line-height: 1.35;
    background: linear-gradient(135deg, var(--shell-text) 30%, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-content h2 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin: 36px 0 14px;
    padding-left: 14px;
    border-left: 3px solid var(--accent-pink);
    color: var(--shell-text);
    line-height: 1.35;
}

.text-content h2:first-of-type {
    margin-top: 8px;
}

.text-content h3 {
    font-size: 1.03125rem;
    font-weight: 600;
    margin: 26px 0 10px;
    color: var(--accent-gold);
    line-height: 1.35;
}

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

.text-content > p:first-of-type {
    font-size: 1rem;
    color: var(--shell-text);
    opacity: 0.9;
}

.text-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
    border: 1px solid var(--shell-border);
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.875rem;
}

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

.text-content th {
    background: var(--shell-panel);
    font-weight: 600;
    color: var(--shell-text);
}

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

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

.text-content li {
    margin-bottom: 8px;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.text-content li::marker {
    color: var(--accent-pink);
}

.text-content a {
    color: var(--accent-pink);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 0, 102, 0.25);
    transition: color 0.2s, border-color 0.2s;
}

.text-content a:hover {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.text-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--accent-pink);
    background: rgba(255, 0, 102, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--shell-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Table horizontal scroll on mobile */
.table-scroll-zone {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: var(--radius-sm);
}

.table-scroll-zone table {
    min-width: 560px;
    width: 100%;
    border-collapse: collapse;
}

.table-scroll-zone th,
.table-scroll-zone td {
    padding: 10px 14px;
    border: 1px solid var(--shell-border);
    text-align: left;
    white-space: nowrap;
}

.table-scroll-zone th {
    background: var(--shell-panel);
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
}

.table-wrapper table {
    min-width: 560px;
    width: 100%;
    border-collapse: collapse;
}

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

.table-wrapper th {
    background: var(--shell-panel);
    font-weight: 600;
}

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

.faq-item-block {
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--shell-panel);
    overflow: hidden;
}

.faq-question-block {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--shell-border);
}

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

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

/* HowTo */
.howto-wrapper {
    margin: 16px 0;
    padding: 18px;
    background: var(--shell-panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--shell-border);
}

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

.howto-step-item {
    counter-increment: step-counter;
    padding: 14px;
    margin-bottom: 8px;
    background: var(--shell-surface);
    border-left: 3px solid var(--accent-pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.howto-step-item strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 6px;
}

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

.list-container ul,
.list-container ol {
    margin: 14px 0 18px;
    padding: 16px 20px 16px 36px;
    background: rgba(21, 22, 34, 0.4);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-md);
    list-style-position: outside;
}

.list-container li {
    margin-bottom: 10px;
    line-height: 1.65;
    font-size: 0.9375rem;
    color: var(--shell-muted);
}

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

/* ── Payment methods ── */
.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 {
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    background: var(--shell-panel);
    transition: border-color 0.2s;
}

.payment-method-card:hover {
    border-color: var(--accent-purple);
}

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

.payment-method-image {
    max-height: 36px;
    width: auto;
    margin: 0 auto;
}

.payment-method-name {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--shell-muted);
    text-transform: uppercase;
}

/* ── App info table / hero block ── */
.app-hero-block {
    margin: 0 0 32px;
}

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

.app-info-table-container {
    border: none;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
}

.app-hero-block .app-info-table-container {
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.95) 0%, rgba(21, 22, 34, 0.98) 100%);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 50px rgba(255, 0, 102, 0.06),
        0 0 80px rgba(155, 89, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.app-hero-block .app-info-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-pink), var(--accent-purple));
}

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

.app-hero-block .app-info-table tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 28px 24px 24px;
}

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

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

.app-hero-block .app-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-md);
    background: rgba(21, 22, 34, 0.5);
    padding: 16px;
    border-bottom: 1px solid var(--shell-border);
    transition: border-color 0.2s, background 0.2s;
}

.app-hero-block .app-info-row:hover {
    border-color: rgba(255, 0, 102, 0.25);
    background: rgba(35, 36, 54, 0.6);
}

.app-hero-block .app-info-row:nth-child(1) {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.08), rgba(155, 89, 255, 0.06));
    border-color: rgba(255, 0, 102, 0.2);
}

.app-hero-block .app-info-row:nth-child(2) {
    grid-column: 1 / -1;
}

.app-hero-block .app-info-row:nth-child(7) {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(0, 200, 83, 0.02));
    border-color: rgba(0, 200, 83, 0.25);
}

.app-info-label-cell {
    padding: 14px;
    text-align: center;
    background: var(--shell-panel);
    width: 60px;
}

.app-hero-block .app-info-label-cell {
    padding: 0;
    background: transparent;
    width: auto;
    flex-shrink: 0;
}

.app-info-value-cell {
    padding: 14px;
    color: var(--shell-muted);
}

.app-hero-block .app-info-value-cell {
    padding: 0;
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.app-hero-block .app-info-row:nth-child(1) .app-info-value-cell {
    font-size: 1rem;
}

.app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(155, 89, 255, 0.12);
    flex-shrink: 0;
}

.app-hero-block .app-info-row:nth-child(1) .app-info-label-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 102, 0.15);
}

.app-hero-block .app-info-row:nth-child(7) .app-info-label-wrapper {
    background: rgba(0, 200, 83, 0.15);
}

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

.app-hero-block .app-info-row:nth-child(1) .app-info-icon {
    color: var(--accent-pink);
    width: 26px;
    height: 26px;
}

.app-hero-block .app-info-row:nth-child(7) .app-info-icon {
    color: var(--accent-green);
    width: 26px;
    height: 26px;
}

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

.app-name-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--shell-border);
}

.app-name-text {
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--shell-text);
    letter-spacing: -0.01em;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-green), #00a844);
    color: #fff;
    font-weight: 700;
    border-radius: 28px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.35);
}

.app-download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.45);
}

.page-stage--aplikacja .text-content {
    margin-top: 0;
}

@media (max-width: 768px) {
    .app-hero-block .app-info-table tbody {
        grid-template-columns: 1fr;
        padding: 20px 16px 16px;
    }

    .app-hero-block .app-info-row:nth-child(1),
    .app-hero-block .app-info-row:nth-child(2),
    .app-hero-block .app-info-row:nth-child(7) {
        grid-column: 1;
    }

    .app-name-logo {
        width: 52px;
        height: 52px;
    }

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

/* ── Site base (footer) ── */
.site-base {
    position: relative;
    background: linear-gradient(180deg, #181926 0%, var(--shell-surface) 40%, #141520 100%);
    border-top: 1px solid var(--shell-border);
    margin-top: auto;
    overflow: hidden;
}

.site-base::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 100%, rgba(255, 0, 102, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 90% 0%, rgba(155, 89, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-red), var(--accent-gold));
    background-size: 200% 100%;
    animation: footer-shimmer 6s ease-in-out infinite;
}

@keyframes footer-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-base-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 28px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    gap: 40px 32px;
    align-items: start;
    margin-bottom: 32px;
}

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

.footer-brand {
    text-align: left;
}

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

.footer-brand-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.footer-social-row a:hover {
    border-color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 0, 102, 0.2);
}

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

.footer-social-fallback {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--shell-muted);
    text-transform: uppercase;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px 32px;
}

.footer-col-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    color: var(--shell-text);
    position: relative;
    padding-bottom: 10px;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), transparent);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: var(--shell-muted);
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, padding-left 0.2s;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-pink);
    transition: width 0.2s;
    position: absolute;
    left: 0;
    bottom: -2px;
}

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

.footer-action-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.footer-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.footer-cta-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.footer-cta-btn--ios {
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    color: var(--shell-text);
}

.footer-cta-btn--android {
    background: var(--accent-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.25);
}

.footer-cta-btn--primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 0, 102, 0.25);
}

.footer-cta-btn--secondary {
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    color: var(--shell-text);
}

.footer-nav-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--shell-border);
}

.footer-nav-row a {
    color: var(--shell-muted);
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-nav-row a:hover,
.footer-nav-row a.is-active {
    color: var(--accent-pink);
}

.footer-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    padding: 20px 24px;
    background: rgba(35, 36, 54, 0.6);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.footer-trust-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--shell-muted);
    flex-shrink: 0;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.footer-trust-item a {
    display: flex;
    align-items: center;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-trust-item a:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.footer-legal-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--shell-border);
}

.footer-disclaimer {
    flex: 1;
    font-size: 0.6875rem;
    color: var(--shell-muted);
    line-height: 1.6;
    min-width: 200px;
}

.footer-lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--shell-panel);
    border: 1px solid var(--shell-border);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--shell-text);
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.footer-lang-chip:hover {
    border-color: var(--accent-pink);
}

.footer-lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.footer-bottom-note {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--shell-muted);
    margin-top: 12px;
}

.site-footer {
    background: var(--shell-surface);
    border-top: 1px solid var(--shell-border);
    margin-top: auto;
}

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

.footer-section-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--shell-text);
}

.footer-bottom {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--shell-muted);
    padding-top: 16px;
    border-top: 1px solid var(--shell-border);
}

/* ── 404 page ── */
.page-stage:has(.error-stage) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-h) - var(--nav-h) - 80px);
    padding: 32px 20px 48px;
}

.error-stage {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 480px;
    padding: 48px 28px 40px;
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.95) 0%, rgba(28, 29, 43, 0.98) 100%);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 60px rgba(255, 0, 102, 0.08),
        0 0 120px rgba(155, 89, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.error-stage::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.error-stage::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(155, 89, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.error-code {
    position: relative;
    font-size: clamp(4.5rem, 18vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(255, 0, 102, 0.35));
    animation: error-glow 3s ease-in-out infinite;
}

@keyframes error-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 0, 102, 0.3)); }
    50% { filter: drop-shadow(0 0 32px rgba(155, 89, 255, 0.4)); }
}

.error-heading {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--shell-text);
    line-height: 1.35;
}

.error-desc {
    position: relative;
    color: var(--shell-muted);
    margin-bottom: 32px;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.error-stage .btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
    color: #fff;
    font-weight: 700;
    border-radius: 28px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.25s, opacity 0.2s;
    box-shadow: 0 6px 24px rgba(255, 0, 102, 0.35);
}

.error-stage .btn-primary::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.2s;
}

.error-stage .btn-primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 0, 102, 0.45);
}

.error-stage .btn-primary:hover::after {
    transform: translateX(3px);
}

.btn-primary {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* ── Kontakt page ── */
.page-stage--kontakt {
    padding-top: 24px;
}

.page-stage--kontakt .text-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
}

.page-stage--kontakt .text-content h1 {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--shell-text) 30%, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-stage--kontakt .text-content > p:first-of-type {
    text-align: center;
    font-size: 1rem;
    color: var(--shell-muted);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--shell-border);
}

.page-stage--kontakt .text-content h2 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-purple);
    margin: 0 0 16px;
}

.page-stage--kontakt .text-content h2:not(:first-of-type) {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--shell-border);
}

.page-stage--kontakt .text-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0;
    padding: 18px 20px 10px;
    color: var(--shell-text);
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.9), rgba(28, 29, 43, 0.95));
    border: 1px solid var(--shell-border);
    border-bottom: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.page-stage--kontakt .text-content h3::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.page-stage--kontakt .text-content h3:nth-of-type(1)::before {
    content: '✉';
    background: rgba(255, 0, 102, 0.15);
    box-shadow: 0 0 16px rgba(255, 0, 102, 0.1);
}

.page-stage--kontakt .text-content h3:nth-of-type(2)::before {
    content: '💬';
    background: rgba(155, 89, 255, 0.15);
    box-shadow: 0 0 16px rgba(155, 89, 255, 0.1);
}

.page-stage--kontakt .text-content h3 + p {
    margin: 0 0 16px;
    padding: 4px 20px 20px;
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.9), rgba(28, 29, 43, 0.95));
    border: 1px solid var(--shell-border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--shell-muted);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-stage--kontakt .text-content h3 + p a {
    color: var(--accent-pink);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.page-stage--kontakt .text-content h3 + p a:hover {
    color: var(--accent-purple);
}

.page-stage--kontakt .text-content h2:last-of-type + p {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 0, 102, 0.06));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-lg);
    color: var(--shell-text);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.page-stage--kontakt .breadcrumb-nav {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Legal pages (polityka, regulamin) ── */
.page-stage--legal {
    padding-top: 24px;
}

.page-stage--legal .text-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 28px;
    background: linear-gradient(160deg, rgba(35, 36, 54, 0.6) 0%, rgba(28, 29, 43, 0.85) 100%);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 40px rgba(155, 89, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.page-stage--legal .text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-gold));
}

.page-stage--polityka .text-content::after {
    content: '🔒';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    opacity: 0.15;
    pointer-events: none;
}

.page-stage--regulamin .text-content::after {
    content: '📋';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    opacity: 0.15;
    pointer-events: none;
}

.page-stage--legal .text-content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--shell-border);
    background: linear-gradient(135deg, var(--shell-text) 20%, var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-stage--legal .text-content > p:first-of-type {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--shell-muted);
    margin-bottom: 28px;
    padding: 16px 18px;
    background: rgba(155, 89, 255, 0.06);
    border-left: 3px solid var(--accent-purple);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-stage--legal .text-content h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 3px solid var(--accent-pink);
    color: var(--shell-text);
}

.page-stage--legal .text-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--accent-gold);
}

.page-stage--legal .text-content p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--shell-muted);
    margin-bottom: 16px;
}

.page-stage--legal .text-content ul,
.page-stage--legal .text-content ol {
    margin: 12px 0 20px;
    padding: 16px 20px 16px 36px;
    background: rgba(21, 22, 34, 0.5);
    border: 1px solid var(--shell-border);
    border-radius: var(--radius-md);
    color: var(--shell-muted);
}

.page-stage--legal .text-content li {
    margin-bottom: 10px;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.page-stage--legal .text-content li::marker {
    color: var(--accent-pink);
}

.page-stage--legal .text-content a {
    color: var(--accent-pink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 0, 102, 0.3);
    transition: color 0.2s, border-color 0.2s;
}

.page-stage--legal .text-content a:hover {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.page-stage--legal .text-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--accent-gold);
    background: rgba(255, 193, 7, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--shell-text);
    font-size: 0.9375rem;
}

.page-stage--legal .table-scroll-zone,
.page-stage--legal .table-wrapper {
    margin: 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--shell-border);
}

/* ── Mobile dock menu (burger bottom-right) ── */
.dock-trigger {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: transform 0.2s;
}

.dock-trigger:active {
    transform: scale(0.95);
}

.dock-trigger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.viewport-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s;
}

.viewport-scrim.is-visible {
    display: block;
    opacity: 1;
}

.dock-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    background: var(--shell-surface);
    border-top: 1px solid var(--shell-border);
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 32px;
    max-height: 70vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-panel.is-visible {
    display: block;
    transform: translateY(0);
}

.dock-panel-list {
    list-style: none;
}

.dock-panel-item {
    border-bottom: 1px solid var(--shell-border);
}

.dock-panel-item:last-child {
    border-bottom: none;
}

.dock-panel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 8px;
    color: var(--shell-text);
    font-size: 0.9375rem;
    font-weight: 500;
}

.dock-panel-link.is-active {
    color: var(--accent-pink);
}

.dock-panel-link svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Hide desktop category strip on mobile, show dock */
@media (max-width: 768px) {
    .category-strip {
        display: none;
    }

    .dock-trigger {
        display: flex;
    }

    .masthead-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 16px;
    }

    .brand-mark {
        width: 100%;
        text-align: center;
        order: -1;
    }

    .masthead-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-help-text {
        display: none;
    }

    .page-stage {
        padding: 12px 12px 80px;
    }

    .promo-banner-image {
        width: var(--banner-mob-w);
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .game-hover-layer {
        opacity: 1;
        background: rgba(0, 0, 0, 0.45);
    }

    .game-play-btn {
        padding: 6px 16px;
        font-size: 0.6875rem;
    }

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

    .text-content {
        padding: 16px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand-col {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-action-col {
        align-items: center;
    }

    .footer-cta-row {
        width: 100%;
        max-width: 320px;
    }

    .footer-nav-row {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-trust-strip {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-legal-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .dock-trigger,
    .dock-panel,
    .viewport-scrim {
        display: none !important;
    }
}
