/* ═══════════════════════════════════════════
   BLIK Casino – Complete Stylesheet
   Brand: BLIK (Polski Standard Płatności)
   ═══════════════════════════════════════════ */

:root {
    /* BLIK Brand */
    --blik-red: #E30613;
    --blik-dark-red: #B8050F;
    --blik-light-red: #FF2D3A;
    --blik-gradient: linear-gradient(135deg, #E30613 0%, #FF2D3A 100%);
    --blik-soft: rgba(227, 6, 19, 0.07);

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-400: #B0B0B0;
    --gray-600: #6B6B6B;
    --gray-700: #4A4A4A;
    --gray-800: #333333;
    --gray-900: #1A1A1A;

    /* Accents */
    --green: #2E7D32;
    --amber: #F9A825;
    --blue: #1976D2;

    /* Elevation */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 28px rgba(0,0,0,0.13);
    --shadow-red: 0 8px 24px rgba(227, 6, 19, 0.18);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.25s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    background: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

strong { font-weight: 700; }

/* ── LAYOUT ───────────────────────────────── */
.wp-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    gap: 1.5rem;
}

.brand-logo {
    background: var(--blik-gradient);
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

/* ── Primary Navigation ──────────────────── */
.primary-nav {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-nav a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
}

.primary-nav a:hover {
    background: var(--blik-soft);
    color: var(--blik-red);
}

/* ── Header CTA ──────────────────────────── */
.header-cta {
    background: var(--blik-gradient);
    color: var(--white);
    padding: 0.6rem 1.3rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

/* ── Burger Menu ─────────────────────────── */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.burger-menu span {
    width: 24px;
    height: 2.5px;
    background: var(--blik-red);
    border-radius: 2px;
    transition: var(--transition);
}

/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */
.breadcrumbs {
    padding: 0.75rem 0;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.breadcrumbs a {
    color: var(--gray-600);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--blik-red);
}

.breadcrumbs span {
    margin: 0 0.35rem;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-section {
    background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
    padding: 56px 0 48px;
    position: relative;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blik-soft);
    color: var(--blik-red);
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-label i {
    font-size: 0.9rem;
}

.hero-heading {
    font-size: clamp(1.65rem, 3.8vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1.4rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gray-900);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.hero-heading .accent {
    background: var(--blik-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.85;
    max-width: 880px;
}

/* ═══════════════════════════════════════════
   LIVE TICKER
   ═══════════════════════════════════════════ */
.live-ticker {
    background: var(--white);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    border-left: 4px solid var(--blik-red);
}

.ticker-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blik-red);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-row {
    padding: 0.45rem 0;
    color: var(--gray-600);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ticker-row i {
    color: var(--blik-red);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TRUST ROW
   ═══════════════════════════════════════════ */
.trust-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-pill i {
    color: var(--green);
    font-size: 0.95rem;
}

/* ── Hero CTA Wrap ───────────────────────── */
.hero-cta-wrap {
    text-align: center;
    margin-top: 2.25rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--blik-gradient);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-primary i {
    margin-left: 0.3rem;
}

/* ═══════════════════════════════════════════
   SECTIONS – COMMON
   ═══════════════════════════════════════════ */
.wp-section {
    padding: 56px 0;
}

.wp-section.alt-bg {
    background: var(--gray-50);
}

.section-heading {
    font-size: 1.85rem;
    text-align: center;
    margin-bottom: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gray-900);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-heading .accent {
    background: var(--blik-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading i {
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--blik-red);
}

.section-lead {
    text-align: center;
    font-size: 0.98rem;
    color: var(--gray-600);
    max-width: 860px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}

.section-lead i {
    margin-right: 0.3rem;
}

/* ═══════════════════════════════════════════
   CASINO CARD GRID
   ═══════════════════════════════════════════ */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.casino-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blik-red);
}

.casino-card.is-featured {
    border-color: var(--blik-red);
    box-shadow: var(--shadow-red);
}

/* ── Card Badge ──────────────────────────── */
.card-badge {
    position: absolute;
    top: -11px;
    right: 18px;
    background: var(--blik-gradient);
    color: var(--white);
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

/* ── Card Top ────────────────────────────── */
.card-top {
    margin-bottom: 1.35rem;
}

.card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.card-stars {
    color: var(--amber);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.card-stars span {
    margin-left: 0.4rem;
}

.card-tagline {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ── Card Bonus ──────────────────────────── */
.card-bonus {
    background: var(--blik-soft);
    padding: 1.15rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.35rem;
    text-align: center;
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--blik-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.bonus-info {
    color: var(--gray-600);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* ── Card Features ───────────────────────── */
.card-features {
    list-style: none;
    margin-bottom: 1.35rem;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.35rem 0;
    color: var(--gray-700);
    font-size: 0.83rem;
    line-height: 1.5;
}

.card-features li i {
    color: var(--green);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── Card CTA ────────────────────────────── */
.card-cta {
    display: block;
    background: var(--blik-gradient);
    color: var(--white);
    text-align: center;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card-cta:hover {
    transform: scale(1.015);
    box-shadow: var(--shadow-red);
}

.card-cta i {
    margin-left: 0.25rem;
}

/* ═══════════════════════════════════════════
   INFO BOX
   ═══════════════════════════════════════════ */
.info-box {
    background: var(--blik-soft);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--blik-red);
    margin: 1.75rem 0;
}

.info-box-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blik-red);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-title i {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   CHECK LIST
   ═══════════════════════════════════════════ */
.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.65;
    font-size: 0.92rem;
}

.check-list li i {
    color: var(--green);
    margin-top: 4px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONTENT BLOCKS
   ═══════════════════════════════════════════ */
.content-title {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    color: var(--gray-900);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.content-text {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
}

.content-text a {
    color: var(--blik-red);
    font-weight: 600;
    transition: var(--transition);
}

.content-text a:hover {
    color: var(--blik-dark-red);
}

/* ═══════════════════════════════════════════
   DATA TABLE
   ═══════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
}

.data-table th {
    background: var(--blik-gradient);
    color: var(--white);
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.data-table th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.data-table th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.88rem;
    vertical-align: top;
}

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

.data-table tbody tr:hover {
    background: var(--gray-50);
}

/* ── Table Status Colors ─────────────────── */
.status-ok {
    color: var(--green);
    font-weight: 600;
}

.status-warn {
    color: var(--amber);
    font-weight: 600;
}

.status-info {
    color: var(--blue);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   STEPS ROW
   ═══════════════════════════════════════════ */
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-box {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.step-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--blik-red);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--blik-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.step-num i {
    font-size: 1rem;
}

.step-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
}

.step-text {
    color: var(--gray-600);
    font-size: 0.87rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline-wrap {
    position: relative;
    padding: 2rem 0;
    margin: 2.5rem 0;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--blik-gradient);
    transform: translateX(-50%);
}

.tl-item {
    position: relative;
    padding: 1.3rem 1.5rem;
    width: calc(50% - 2rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.75rem;
}

.tl-item:nth-child(odd) {
    margin-left: auto;
    margin-right: 2rem;
}

.tl-item:nth-child(even) {
    margin-left: 2rem;
    margin-right: auto;
}

.tl-item::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--blik-red);
    border: 3px solid var(--white);
    border-radius: 50%;
    top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.tl-item:nth-child(odd)::before {
    left: -2.3rem;
}

.tl-item:nth-child(even)::before {
    right: -2.3rem;
}

.tl-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blik-red);
    margin-bottom: 0.35rem;
}

.tl-text {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   PROS / CONS GRID
   ═══════════════════════════════════════════ */
.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-box,
.cons-box {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.pros-box {
    background: rgba(46, 125, 50, 0.06);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.cons-box {
    background: rgba(227, 6, 19, 0.05);
    border: 1px solid rgba(227, 6, 19, 0.15);
}

.proscons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-box .proscons-title {
    color: var(--green);
}

.cons-box .proscons-title {
    color: var(--blik-red);
}

.proscons-list {
    list-style: none;
}

.proscons-list li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.55;
}

.pros-box .proscons-list li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
}

.cons-box .proscons-list li i {
    color: var(--blik-red);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-entry {
    background: var(--gray-50);
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-entry:hover {
    border-color: var(--blik-red);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-q i {
    color: var(--blik-red);
    font-size: 1rem;
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}

.faq-entry.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    color: var(--gray-600);
    line-height: 1.75;
    display: none;
    margin-top: 0.85rem;
    font-size: 0.9rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--gray-200);
}

.faq-entry.open .faq-a {
    display: block;
}

/* ═══════════════════════════════════════════
   AUTHOR BOX
   ═══════════════════════════════════════════ */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-50);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border: 1px solid var(--gray-200);
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: var(--blik-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.82rem;
    color: var(--blik-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   NUMBERED LIST (ordered)
   ═══════════════════════════════════════════ */
.numbered-steps {
    list-style: decimal;
    margin-left: 1.5rem;
    color: var(--gray-700);
}

.numbered-steps li {
    padding: 0.45rem 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 52px 0 20px;
}

.footer-main {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    background: var(--blik-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blik-light-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    line-height: 1.7;
}

.footer-bottom a {
    color: var(--blik-light-red);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════
   RESPONSIVE – TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
    /* Mobile Navigation */
    .primary-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 998;
        border-top: 1px solid var(--gray-200);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .primary-nav a {
        width: 100%;
        text-align: center;
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    /* Layout */
    .hero-section {
        padding: 40px 0 36px;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .wp-section {
        padding: 44px 0;
    }

    /* Grid */
    .casino-grid {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline-wrap::before {
        left: 20px;
    }

    .tl-item {
        width: calc(100% - 48px);
        margin-left: 48px !important;
        margin-right: 0 !important;
    }

    .tl-item::before {
        left: -28px !important;
        right: auto !important;
    }

    /* Pros/Cons */
    .proscons-grid {
        grid-template-columns: 1fr;
    }

    /* Author */
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .wp-container {
        padding: 0 16px;
    }

    .hero-heading {
        font-size: 1.4rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .casino-card {
        padding: 1.3rem;
    }

    .trust-row {
        gap: 0.75rem;
    }

    .trust-pill {
        font-size: 0.78rem;
        padding: 0.45rem 0.85rem;
    }

    .info-box {
        padding: 1.15rem 1.25rem;
    }

    .live-ticker {
        padding: 1.15rem 1.25rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.7rem 0.75rem;
        font-size: 0.82rem;
    }

    .step-box {
        padding: 1.35rem;
    }

    .faq-entry {
        padding: 1.1rem 1.25rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .btn-primary {
        padding: 0.8rem 1.6rem;
        font-size: 0.88rem;
    }
}

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {
    .site-header,
    .burger-menu,
    .header-cta,
    .hero-cta-wrap,
    .card-cta,
    .btn-primary,
    .site-footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .wp-section {
        padding: 24px 0;
        break-inside: avoid;
    }

    .casino-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}