:root {
    /* ---- Background Colors (luxury dark brown) ---- */
    --bg-body: #1a1512;
    --bg-header: #1a1512;
    --bg-footer: #1a1512;
    --bg-card: #241e1a;
    --bg-card-hover: #2d2621;
    --bg-banner: #1a1512;

    /* ---- Text Colors ---- */
    --text-primary: #f5f0e8;
    --text-secondary: #c9b896;
    --text-muted: #9a8b6f;
    --text-dark: #1a1512;

    /* ---- Accent Colors (gold luxury) ---- */
    --accent: #c9a227;
    --accent-hover: #d4af37;
    --accent-secondary: #b8860b;
    --accent-tertiary: #daa520;

    /* ---- Button Primary (Register — gold) ---- */
    --btn-primary-bg: #c9a227;
    --btn-primary-bg-hover: #d4af37;
    --btn-primary-text: #1a1512;
    --btn-primary-border: none;
    --btn-primary-hover-opacity: 0.95;
    --btn-primary-shadow: rgba(201, 162, 39, 0.4);

    /* ---- Button Secondary (Login — outline gold) ---- */
    --btn-secondary-bg: transparent;
    --btn-secondary-text: #c9a227;
    --btn-secondary-border: 1px solid rgba(201, 162, 39, 0.5);
    --btn-secondary-hover-bg: rgba(201, 162, 39, 0.1);

    /* ---- Border Colors ---- */
    --border-color: #3d3529;
    --border-color-light: #4a4235;

    /* ---- Border Radius ---- */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    --radius-btn: 8px;

    /* ---- Layout ---- */
    --container-max-width: 1280px;
    --container-padding: 20px;

    /* ---- Shadows ---- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 4px 15px var(--btn-primary-shadow);

    /* ---- Transition ---- */
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;

    /* ---- Typography (clean sans-serif) ---- */
    --font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --heading-accent-gold: #d4af37;
    --nav-hover: #d4af37;

    /* ---- Font Sizes ---- */
    --text-xs: 0.75rem;
    --text-sm: 0.85rem;
    --text-base: 0.95rem;
    --text-md: 1rem;
    --text-lg: 1.1rem;
    --text-xl: 1.3rem;
    --text-2xl: 1.6rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;

    /* ---- Spacing ---- */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 60px;

    /* ---- Z-Index ---- */
    --z-dropdown: 100;
    --z-sticky: 1000;
    --z-modal: 1100;

    /* ---- Hero Gradient (dark brown luxury) ---- */
    --hero-gradient: linear-gradient(135deg, #1a1512 0%, #241e1a 50%, #1a1512 100%);

    /* ---- Scrollbar ---- */
    --scrollbar-width: 6px;
    --scrollbar-thumb: var(--accent);
    --scrollbar-thumb-hover: var(--accent-hover);
    --scrollbar-track: var(--bg-body);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 100% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

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

/* Tekst artykułu / przewodników — linki muszą być widoczne (globalne a { color: inherit } je ukrywa) */
.content-section a:not(.btn),
.legal-section a:not(.btn),
.quick-start-section a:not(.btn) {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(201, 162, 39, 0.5);
    text-underline-offset: 0.18em;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.content-section a:not(.btn):hover,
.legal-section a:not(.btn):hover,
.quick-start-section a:not(.btn):hover {
    color: var(--accent-hover);
    text-decoration-color: var(--accent-hover);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: rgba(26, 21, 18, 0.95);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.5px;
}

.header__logo a {
    display: flex;
}

.header__logo-part1 {
    color: var(--text-primary);
}

.header__logo-part2 {
    color: var(--heading-accent-gold);
}

.header__logo img {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation */
.header__nav {
    flex: 1;
    min-width: 0;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.nav__list > li {
    display: flex;
    align-items: center;
    margin: 0;
}

.nav__list a,
.nav__list span.submenu-toggle {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-base);
    transition: color var(--transition);
    padding: 10px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.nav__list a:hover,
.nav__list span.submenu-toggle:hover {
    color: var(--nav-hover);
}

.nav__list a.active,
.nav__list span.submenu-toggle.active {
    color: var(--nav-hover);
}

/* Header Buttons */
.header__lang-dropdown {
    position: relative;
}

.header__lang-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    font-family: inherit;
    cursor: pointer;
    transition: color var(--transition);
}

.header__lang-trigger:hover {
    color: var(--nav-hover);
}

.header__lang-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.header__lang-globe svg {
    display: block;
}

.header__lang-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    transition: transform var(--transition);
}

.header__lang-dropdown:hover .header__lang-arrow,
.header__lang-dropdown:focus-within .header__lang-arrow {
    transform: rotate(180deg);
}

.header__lang-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0;
    padding: 10px 0 6px;
    min-width: 100%;
    list-style: none;
    background: var(--bg-header);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: var(--z-dropdown);
}

.header__lang-dropdown:hover .header__lang-list,
.header__lang-dropdown:focus-within .header__lang-list {
    display: block;
}

.header__lang-list a {
    display: block;
    padding: 8px 14px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition);
}

.header__lang-list a:hover {
    color: var(--nav-hover);
}

.header__lang-list .header__lang-item--active {
    color: var(--nav-hover);
    font-weight: var(--font-weight-medium);
}

.header__desktop-buttons {
    display: flex;
    gap: 12px;
}

.header__lang-mobile {
    display: none;
}

.header__lang-row {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0;
    margin: 0 20px;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.header__lang-row-inner {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.header__lang-row::-webkit-scrollbar {
    height: 4px;
}

.header__lang-chip {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.header__lang-chip:hover {
    color: var(--text-primary);
}

.header__lang-chip--active {
    color: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.25);
}

.header__mobile-buttons {
    display: none;
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.header__mobile-buttons .btn {
    flex: 1;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-family: var(--font-family);
}

.btn--login {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border: var(--btn-secondary-border);
}

.btn--login:hover {
    background: var(--btn-secondary-hover-bg);
    color: var(--accent-hover);
}

.btn--register,
.btn--signup {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: var(--btn-primary-border);
}

.btn--register:hover,
.btn--signup:hover {
    background: var(--btn-primary-bg-hover);
    opacity: var(--btn-primary-hover-opacity);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--btn-primary-shadow);
}

.btn--sm {
    padding: 8px 16px;
    font-size: var(--text-xs);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: calc(var(--z-sticky) + 1);
    width: 42px;
    height: 42px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span {
    display: none;
}

.hamburger.active::before {
    content: '\2715';
    font-size: 1.4rem;
    color: var(--text-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 25px 0 0;
}

.hero__box {
    background: var(--hero-gradient);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.06), 0 0 80px rgba(0, 0, 0, 0.2);
}

.hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.hero__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero__tagline {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__badges {
    margin-bottom: var(--space-md);
}

.hero__badge {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.hero__badges .hero__badge:not(:last-child) {
    margin-right: var(--space-sm);
}

.hero__text-wrap {
    width: calc(100% + 50px);
    margin-top: var(--space-lg);
    margin-left: -25px;
    margin-right: -25px;
    padding: 0 25px;
    box-sizing: border-box;
}

.hero__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: none;
}

.hero__text p {
    margin: 0 0 0.75em 0;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

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

.hero__title:last-child,
.hero__tagline:last-child,
.hero__badges:last-child,
.hero__text:last-child {
    margin-bottom: 0;
}

.hero__highlight {
    color: var(--nav-hover);
}

.hero__date {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0 0 var(--space-sm) 0;
}

.hero__disclaimer {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: var(--space-md) 0 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Hero CTA — orange-red */
.btn--bonus {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn--bonus:hover {
    background: var(--btn-primary-bg-hover);
    box-shadow: 0 4px 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-1px);
}

.btn--register-sm {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 28px;
    font-size: 0.9rem;
}

.btn--register-sm:hover {
    background: rgba(201, 162, 39, 0.15);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

/* ============================================
   PROMO CAROUSEL (po hero, bez ramki)
   ============================================ */
.promo-carousel {
    padding: var(--space-lg) 0;
    background: transparent;
}

.promo-carousel__wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.promo-carousel__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-round);
    color: var(--accent);
    cursor: pointer;
    transition: all var(--transition);
}

.promo-carousel__arrow:hover {
    background: var(--accent);
    color: var(--text-primary);
    border-color: var(--accent);
}

.promo-carousel__track {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.promo-carousel__scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Ukrycie paska przewijania */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.promo-carousel__scroll::-webkit-scrollbar {
    display: none;
}

.promo-carousel__card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 18px;
    min-width: 150px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-align: center;
    border: none;
}

.promo-carousel__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.promo-carousel__logo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--text-secondary);
}

.promo-carousel__card:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.15);
}

.promo-carousel__score {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--accent);
    margin-bottom: 6px;
}

.promo-carousel__name {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 6px;
}

.promo-carousel__offer {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.35;
}

.promo-carousel__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px auto 0;
    justify-content: center;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
}

.promo-carousel__link {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    transition: color var(--transition), background var(--transition);
}

.promo-carousel__link:hover {
    color: var(--accent);
    background: var(--bg-card-hover);
}

/* ============================================
   RANKING SECTION
   ============================================ */
.ranking-section {
    padding: var(--space-xl) 0;
}

.ranking-section__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--heading-accent-gold);
    margin-bottom: var(--space-md);
    text-align: center;
}

.ranking-section__intro,
.ranking-section__disclaimer {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ranking-section__disclaimer {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: var(--space-lg);
}

.ranking-grid .ranking-card:nth-child(n+12) {
    display: none;
}

.ranking-grid.ranking-grid--expanded .ranking-card {
    display: block;
}

.ranking-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.ranking-card__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.ranking-card__logo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--text-secondary);
    object-fit: none;
}

.ranking-card__score {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--accent);
    background: rgba(201, 162, 39, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    line-height: 1.2;
}

.ranking-card__info {
    flex: 1;
    min-width: 0;
    padding-right: 48px;
}

.ranking-card__extra {
    font-size: var(--text-sm);
    color: var(--nav-hover);
    margin-bottom: 4px;
}

.ranking-card__bonus,
.ranking-card__fs {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.ranking-card__actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
}

.ranking-section__more {
    display: block;
    margin: var(--space-lg) auto 0;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-base);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.ranking-section__more:hover {
    background: rgba(201, 162, 39, 0.15);
}

/* ============================================
   USP SECTION
   ============================================ */
.usp-section {
    padding: var(--space-xl) 0;
    background: rgba(0, 0, 0, 0.15);
}

.usp-section__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--heading-accent-gold);
    margin-bottom: var(--space-md);
    text-align: center;
}

.usp-section__intro {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.usp-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.usp-card__text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   LEGAL SECTION
   ============================================ */
.legal-section {
    padding: var(--space-xl) 0;
}

.legal-section h2 {
    margin-top: 0;
}

.legal-warning {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: var(--space-lg) 0;
}

.legal-warning--risk {
    background: rgba(200, 0, 0, 0.08);
    border-color: rgba(200, 0, 0, 0.3);
}

.legal-warning strong {
    display: block;
    margin-bottom: 10px;
    color: var(--heading-accent-gold);
}

.legal-warning--risk strong {
    color: #e57373;
}

.legal-warning p {
    margin: 0 0 8px 0;
    font-size: var(--text-sm);
}

.legal-warning p:last-child {
    margin-bottom: 0;
}

/* ============================================
   QUICK START SECTION
   ============================================ */
.quick-start-section {
    padding: var(--space-xl) 0;
}

.quick-start-age {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: var(--space-lg);
}

.quick-start-age strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading-accent-gold);
}

.quick-start-age p {
    margin: 0;
    font-size: var(--text-sm);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-color);
}

.news-section__intro {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

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

.news-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
}

.news-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.15);
}

.news-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

.news-card__date {
    font-size: var(--text-sm);
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.news-card__excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.news-section__link {
    display: inline-block;
    margin-top: var(--space-lg);
    color: var(--accent);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition);
}

.news-section__link:hover {
    color: var(--accent-hover);
}

.games-section {
    padding: 40px 0 10px;
}

.games-section__title {
    text-align: left;
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--heading-accent-gold);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card-link:hover .game-card__image {
    transform: scale(1.06);
}

.game-card-link:hover .game-card__overlay {
    opacity: 1;
}

.game-card-link:hover .game-card__play {
    opacity: 1;
    transform: scale(1.08);
}

.crosslinks-sep {
    border-top: 1px solid var(--border-color);
    margin: 0;
}

.crosslinks-section {
    padding: var(--space-md) 0;
}

.crosslinks-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.crosslinks-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
}

.crosslinks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.crosslinks-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color var(--transition);
}

.crosslinks-list a:hover {
    color: var(--nav-hover);
}

@media (max-width: 768px) {
    .crosslinks-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px 20px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .crosslinks-list li {
        flex-shrink: 0;
    }
}

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card-link:hover .game-card,
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 25px rgba(201, 162, 39, 0.2);
    border-color: var(--accent);
}

.game-card__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.game-card:hover .game-card__image {
    transform: scale(1.06);
}

.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.game-card__play {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.45);
}

.game-card:hover .game-card__play {
    opacity: 1;
    transform: scale(1.08);
}

.game-card__play::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 3px;
}

.game-card__play:hover {
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.6);
}

.game-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px 10px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    background: var(--bg-header);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-sm);
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '\203A';
    margin-left: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--text-lg);
}

.breadcrumbs__link {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.breadcrumbs__link:hover {
    color: var(--accent);
}

.breadcrumbs__current {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    padding: var(--space-xl) 0;
    background: var(--bg-body);
}

.main h1,
.main h2,
.main h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.main h1 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--heading-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.main h1:last-child,
.main h2:last-child,
.main h3:last-child {
    margin-bottom: 0;
}

.main h2 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-top: 15px;
}

.main h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-top: 25px;
    margin-bottom: 12px;
}

.main p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.main ul, .main ol {
    color: var(--text-secondary);
    margin: 0 0 20px 24px;
    padding-left: 18px;
}

.main li {
    margin-bottom: var(--space-sm);
}

.main img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px auto;
    display: block;
}

/* Nagłówek recenzji: globalne .main img (margin: auto) centrowało logo w rzędzie flex */
.recenzja-header img {
    margin: 0;
    flex-shrink: 0;
}

.recenzja-updated {
    font-size: var(--text-sm, 0.875rem);
    color: var(--text-secondary);
    margin: 1rem 0 0;
}

.recenzja-updated time {
    font-weight: var(--font-weight-medium, 500);
}

.page-button {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-page {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.error-page__code {
    font-size: 8rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.main .error-page__title {
    font-size: var(--text-3xl);
    color: var(--text-primary) !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: var(--space-md);
}

.error-page__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER — логотип, описание, 18+, дисклеймер, меню справа
   ============================================ */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
}

.footer__container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer__left {
    max-width: 480px;
}

.footer__right {
    flex-shrink: 0;
}

.footer__menu-columns {
    display: flex;
    gap: 32px 40px;
    flex-wrap: wrap;
}

.footer__menu-columns .footer__menu {
    min-width: 140px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
}

.footer__logo-part1 {
    color: var(--text-primary);
}

.footer__logo-part2 {
    color: var(--heading-accent-gold);
}

.footer__logo-img {
    width: auto;
    max-width: 210px;
}

.footer__description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
}

.footer__badge {
    height: 40px;
    width: auto;
}

.footer__badge--link {
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity var(--transition);
}

.footer__badge--link:hover {
    opacity: 1;
}

.footer__badge--link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.5;
    margin: 0;
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 10px;
    font-size: var(--text-sm);
}

.footer__legal-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__legal-links a:hover {
    color: var(--nav-hover);
}

.footer__legal-sep {
    color: var(--text-muted);
    opacity: 0.6;
    user-select: none;
}

.footer__menu-title {
    font-size: var(--text-md);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

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

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu li:last-child {
    margin-bottom: 0;
}

.footer__menu a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer__menu a:hover {
    color: var(--nav-hover);
}

.footer__bottom {
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copyright {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        text-align: left;
    }

    .footer__right {
        width: 100%;
    }
}

.floating-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    padding: 10px 16px;
    gap: 8px;
    z-index: var(--z-sticky);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn {
    flex: 1;
    padding: 10px 16px;
    text-align: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    margin: 0;
}

.floating-btn--login {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border: none;
}

.floating-btn--login:hover {
    background: var(--btn-secondary-hover-bg);
}

.floating-btn--register {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
}

.floating-btn--register:hover {
    background: var(--btn-primary-bg-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--btn-primary-shadow);
}

/* ============================================
   TABLES
   ============================================ */
.content-table-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border-color);
}

.sloty-hub-table {
    table-layout: fixed;
}

.sloty-hub-table thead th[colspan] {
    text-align: center;
}

.sloty-hub-table td {
    vertical-align: top;
}

@media (min-width: 900px) {
    .sloty-hub-table-wrap {
        overflow-x: visible;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-base);
}

th, td {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-primary);
}

thead tr {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: var(--font-weight-bold);
}
thead tr th {
    background: transparent;
    color: inherit;
    font-weight: inherit;
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

tbody tr {
    transition: background var(--transition);
}

tbody tr:hover {
    background: var(--bg-card-hover);
}

table td p {
    margin: 0;
    color: var(--text-primary);
}

/* ============================================
   CONTENT INSERT (auto-inserted image + buttons)
   ============================================ */
img.content-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px auto 0;
    max-height: 350px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    margin: 0;
    flex: 1;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    background: var(--bg-card);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer [itemprop="text"],
.faq-answer > div {
    padding: 15px 20px 20px;
    color: var(--text-secondary);
    margin: 0;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

.faq-answer [itemprop="text"] ul,
.faq-answer > div ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.faq-answer [itemprop="text"] li,
.faq-answer > div li {
    margin-bottom: 4px;
}

/* ============================================
   PROMO BANNER (in-content block)
   ============================================ */
.promo-banner {
    background: linear-gradient(135deg, #c9a227 0%, #b8860b 50%, #d4af37 100%);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 30px rgba(201, 162, 39, 0.35), 0 0 50px rgba(201, 162, 39, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.promo-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extra-bold);
    color: var(--text-dark);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    position: relative;
}

.promo-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.promo-button {
    background: var(--accent);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: var(--radius-btn);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    position: relative;
}

.promo-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: var(--scrollbar-width);
    height: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

/* ============================================
   DROPDOWN MENU — Desktop
   ============================================ */
.header__nav .has-submenu {
    position: relative;
}

.header__nav .submenu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-primary);
}

.header__nav .dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-secondary);
    transition: transform var(--transition), border-color var(--transition);
    margin-top: 1px;
}

.header__nav .has-submenu:hover .dropdown-arrow {
    transform: rotate(180deg);
    border-top-color: var(--nav-hover);
}


.header__nav .submenu-wrap {
    position: absolute;
    left: 0;
    transform: translateY(8px);
    top: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: var(--z-dropdown);
}

.header__nav .has-submenu:hover > .submenu-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header__nav .submenu {
    background: var(--bg-card);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.header__nav .submenu--mega {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    min-width: min(650px, 95vw);
    max-width: min(95vw, 900px);
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.header__nav .submenu-wrap--mega {
    left: 50%;
    transform: translate(-50%, 8px);
}

.header__nav .has-submenu:hover > .submenu-wrap--mega {
    transform: translate(-50%, 0);
}

.header__nav .submenu-wrap--mega .submenu {
    min-width: min(650px, 95vw);
}

.header__nav .submenu--mega li {
    min-width: 0;
}

.header__nav .submenu--mega li a {
    display: block;
    border: none;
    border-left: none;
    border-radius: var(--radius-xs);
    padding: 10px 12px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--nav-hover);
    background: var(--bg-card);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    transition: color 0.2s, background 0.2s;
}

.header__nav .submenu--mega li a:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.header__nav .submenu--mega li a.active {
    color: var(--accent);
}

.header__nav .submenu li {
    list-style: none;
    margin: 0;
}

.header__nav .submenu:not(.submenu--mega) li a {
    padding: 11px 20px;
    display: block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color 0.2s;
    border-left: 3px solid transparent;
}

.header__nav .submenu:not(.submenu--mega) li a:hover {
    color: var(--text-primary);
}

.header__nav .submenu:not(.submenu--mega) li:not(:last-child) a {
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile menu (generated by JS) — hidden on desktop */
.nav__list-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .header__nav,
    .header__desktop-buttons,
    .header__lang--desktop {
        display: none;
    }

    .header__nav.active .header__lang-mobile {
        display: block;
        padding: 12px 0 0;
    }

    .header__nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-header);
        padding: 12px 0 16px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        z-index: var(--z-sticky);
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Hide desktop nav list on mobile */
    .header__nav.active .nav__list {
        display: none;
    }

    /* Show mobile flat list */
    .header__nav.active .nav__list-mobile {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__list-mobile > li {
        position: relative;
    }

    .nav__list-mobile > li:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 5%;
        right: 5%;
        height: 1px;
        background: var(--border-color);
    }

    .nav__list-mobile a {
        display: block;
        padding: 14px 20px;
        font-size: var(--text-base);
        font-weight: var(--font-weight-medium);
        text-align: center;
        color: var(--text-secondary);
        transition: color 0.2s;
    }

    .nav__list-mobile a:hover {
        color: var(--text-primary);
    }

    .nav__list-mobile a.active {
        color: var(--nav-hover);
    }

    /* ---- 2-column mode (>7 items) ---- */
    .nav__list-mobile--two-col {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .nav__list-mobile--two-col > li:not(:last-child)::after {
        left: 8px;
        right: 8px;
    }

    /* Hide dividers on the last row */
    .nav__list-mobile--two-col > li:nth-last-child(1)::after,
    .nav__list-mobile--two-col > li:nth-last-child(2)::after {
        display: none;
    }

    .nav__list-mobile--two-col a {
        padding: 12px 10px;
        font-size: var(--text-sm);
    }

    .header__nav.active .header__mobile-buttons {
        display: flex;
        flex-direction: row;
        margin-top: 12px;
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .footer__container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ranking-grid {
        grid-template-columns: 1fr;
    }

    .promo-carousel__card {
        min-width: 130px;
    }

    .promo-carousel__arrow {
        width: 36px;
        height: 36px;
    }

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

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero {
        padding: 15px 0 0;
    }
    
    .hero__box {
        padding: 25px 20px;
        border-radius: var(--radius-sm);
    }
    .hero__text-wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero__title {
        font-size: 1.4rem;
    }
    
    .btn--bonus,
    .btn--register-sm {
        padding: 10px 22px;
        font-size: var(--text-sm);
    }
    
    .game-card__play {
        width: 50px;
        height: 50px;
    }
    
    .game-card__play::before {
        border-width: 10px 0 10px 16px;
    }
    
    .game-card__title {
        font-size: 0.8rem;
        padding: 10px 8px;
    }
    
    .main {
        padding-bottom: 80px;
    }
    
    .footer {
        padding-bottom: 70px;
    }
    
    .footer__container {
        flex-direction: column;
    }
    
    .footer__menu-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }
    
    .footer__menu-columns .footer__menu {
        min-width: 0;
    }
    
    .footer__badges {
        justify-content: flex-start;
    }
    
    .footer__bottom .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__copyright {
        order: 2;
    }

    .footer__legal-links {
        order: 1;
        justify-content: center;
    }
    
    .games-section__title {
        font-size: var(--text-xl);
    }
    
    .main h1 {
        font-size: var(--text-2xl);
    }
    
    .main h2 {
        font-size: var(--text-xl);
    }

    /* Floating buttons visible on mobile (radius как у .header__nav .submenu) */
    .floating-buttons {
        display: flex;
        gap: 8px;
    }

    /* 404 page */
    .error-page__code {
        font-size: 5rem;
    }

    /* FAQ mobile */
    .faq-question h3 {
        font-size: var(--text-md);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .games-grid {
        gap: 10px;
    }

    .footer__container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer__bottom {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Recenzje kasyn — tabele porównawcze */
.recenzja-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 1rem 0 1.75rem;
    -webkit-overflow-scrolling: touch;
}

.recenzja-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.recenzja-table th,
.recenzja-table td {
    border: 1px solid var(--border-color);
    padding: 0.55rem 0.7rem;
    text-align: left;
    vertical-align: top;
}

/* Nagłówek jak przyciski (accent) — ogólne thead było zasłaniane przez .recenzja-table th */
.recenzja-table thead th {
    background: var(--accent);
    color: var(--btn-primary-text);
    font-weight: var(--font-weight-bold);
}

.recenzja-table caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding: 0;
}

.recenzja-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.recenzja-table .recenzja-table__self {
    background: rgba(201, 162, 39, 0.08);
}

/* Recenzje — sekcje w siatce 2-kolumnowej (karty tematyczne) */
.recenzja-section {
    margin-bottom: 0.25rem;
}

.recenzja-section__lead {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.recenzja-topic-grid {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.recenzja-topic-grid__cell {
    margin: 0;
    min-width: 0;
}

.recenzja-topic-grid__cell--full {
    grid-column: 1 / -1;
}

.recenzja-topic-card {
    margin: 0;
    height: 100%;
    padding: 1rem 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-sizing: border-box;
}

.recenzja-topic-card__title {
    margin: 0 0 0.5rem;
    font-size: var(--text-lg, 1.125rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.recenzja-topic-card__title a {
    color: inherit;
    text-decoration: none;
}

.recenzja-topic-card__title a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.recenzja-topic-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.recenzja-topic-card p + p {
    margin-top: 0.65rem;
}

.recenzja-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin-top: 1rem;
}

.recenzja-facts-grid__item {
    padding: 1rem 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    min-width: 0;
}

.recenzja-facts-grid__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.recenzja-facts-grid__value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}

.recenzja-facts-grid__note {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.recenzja-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin-top: 1rem;
}

.recenzja-faq-card {
    margin: 0;
    padding: 1rem 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    min-width: 0;
    box-sizing: border-box;
}

.recenzja-faq-card__q {
    margin: 0 0 0.5rem;
    font-size: var(--text-md, 1rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.recenzja-faq-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .recenzja-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .recenzja-topic-grid,
    .recenzja-facts-grid,
    .recenzja-faq-grid {
        grid-template-columns: 1fr;
    }

    .recenzja-topic-grid__cell--full {
        grid-column: auto;
    }
}
