/* ============================================================
   BETUJEMY.PL — Design System 2026
   Czysty CSS (bez frameworków) — szybki, mobile-first
   ============================================================ */

:root {
    --bg: #050505;
    --bg-2: #0b0b0d;
    --panel: rgba(14, 14, 16, 0.82);
    --border: rgba(255, 255, 255, 0.07);
    --border-hi: rgba(255, 255, 255, 0.14);
    --red: #ff2d2d;
    --red-deep: #c40f0f;
    --fire-1: #ff2200;
    --fire-2: #ff7b00;
    --gold: #d4af37;
    --green: #22c55e;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --text: #f4f4f5;
    --muted: #9d9da6;
    --dim: #66666e;
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius: 20px;
    --radius-lg: 28px;
    --shadow-red: 0 10px 40px -10px rgba(255, 45, 45, 0.35);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video, svg { max-width: 100%; display: block; }
.prose img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--red); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Tło strony ---------- */
.bg-fx {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(55% 38% at 50% -5%, rgba(255, 34, 0, 0.13), transparent 70%),
        radial-gradient(40% 35% at 90% 40%, rgba(255, 123, 0, 0.05), transparent 70%),
        radial-gradient(45% 40% at 8% 78%, rgba(255, 45, 45, 0.06), transparent 70%),
        var(--bg);
}
.bg-grid {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(70% 55% at 50% 30%, #000 30%, transparent 100%);
            mask-image: radial-gradient(70% 55% at 50% 30%, #000 30%, transparent 100%);
}
#sparks-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }

/* ---------- Typografia ---------- */
.display {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.08;
}
.grad-fire {
    background: linear-gradient(92deg, var(--fire-1), var(--fire-2) 85%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    padding-right: 0.08em;
}
.grad-green {
    background: linear-gradient(120deg, #22c55e, #6ee7a0);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.grad-gold {
    background: linear-gradient(120deg, #d4af37, #f5d77a);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.28em;
    color: var(--muted);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 20px; }
section { position: relative; padding: 64px 0; }
@media (min-width: 768px) { section { padding: 104px 0; } }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
@media (min-width: 768px) { .section-head { margin-bottom: 64px; } }
.section-head h2 { font-size: clamp(30px, 5.5vw, 52px); margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 15px; }

/* ---------- Panele / karty ---------- */
.glass {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-hi); }

/* ---------- Przyciski ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 13px; padding: 17px 32px; border-radius: 16px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s;
    position: relative; overflow: hidden; text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-red { background: linear-gradient(135deg, #ff3b3b, var(--red-deep)); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -12px rgba(255, 45, 45, 0.55); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: var(--red); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-ghost { border: 1px solid var(--border-hi); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: var(--red); color: #fff; background: rgba(255,45,45,0.08); }
.btn-block { width: 100%; }

/* Shimmer na CTA */
.btn-shine::after {
    content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: shine 3.2s var(--ease-out) infinite;
}
@keyframes shine { 0%, 55% { left: -80%; } 100% { left: 140%; } }

/* ---------- Badge / chip ---------- */
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 2s infinite; }
.chip-red { border-color: rgba(255,45,45,0.35); background: rgba(255,45,45,0.08); color: #ff9d9d; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- NAV ---------- */
.nav {
    position: sticky; top: 0; z-index: 5000;
    background: rgba(5,5,5,0.78);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
@media (min-width: 768px) { .nav-inner { height: 84px; } }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 20px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.nav-logo img { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,45,45,0.35); box-shadow: 0 0 18px rgba(255,45,45,0.25); }
.nav-links { display: none; gap: 30px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.nav-links a { transition: color 0.25s; }
.nav-links a:hover { color: var(--red); }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-cta { font-size: 10.5px; padding: 12px 20px; border-radius: 12px; }
#scroll-progress { position: fixed; top: 0; left: 0; height: 2.5px; width: 0%; background: linear-gradient(90deg, var(--fire-1), var(--fire-2)); z-index: 99999; box-shadow: 0 0 12px rgba(255,45,45,0.6); }

/* ---------- HERO ---------- */
.hero { padding: 68px 0 56px; text-align: center; position: relative; }
@media (min-width: 768px) { .hero { padding: 110px 0 90px; } }
.hero h1 { font-size: clamp(44px, 10vw, 118px); margin: 22px 0 20px; }
.hero-sub { color: var(--muted); font-size: clamp(15px, 2.2vw, 19px); max-width: 640px; margin: 0 auto 36px; font-weight: 300; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 8px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 34px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }

/* Staggered entrance */
.hero .stagger { opacity: 0; transform: translateY(26px); animation: rise 0.9s var(--ease-out) forwards; }
.hero .stagger:nth-child(1) { animation-delay: 0.05s; }
.hero .stagger:nth-child(2) { animation-delay: 0.16s; }
.hero .stagger:nth-child(3) { animation-delay: 0.28s; }
.hero .stagger:nth-child(4) { animation-delay: 0.4s; }
.hero .stagger:nth-child(5) { animation-delay: 0.52s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Licznik VIP w hero */
.vip-counter {
    display: inline-flex; flex-direction: column; gap: 4px;
    padding: 26px 44px; margin-top: 38px; position: relative; overflow: hidden;
}
.vip-counter::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0.7;
}
.vip-counter .num { font-family: var(--font-display); font-size: clamp(40px, 7vw, 62px); font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.vip-counter .lbl { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3em; color: var(--red); }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--dim); white-space: nowrap; display: flex; align-items: center; gap: 48px; }
.marquee b { color: var(--red); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- STATY ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat { text-align: center; padding: 30px 16px; }
@media (min-width: 768px) { .stat { padding: 44px 20px; } }
.stat .num { font-family: var(--font-display); font-size: clamp(30px, 5vw, 52px); font-weight: 700; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--dim); margin-top: 6px; }

/* ---------- SLIDERY ---------- */
.snap-slider {
    display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 24px 20px 44px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.snap-slider::-webkit-scrollbar { display: none; }
.snap-item { flex: 0 0 auto; scroll-snap-align: center; }
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
    width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-hi); color: #fff;
    transition: all 0.3s;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.08); }

/* ---------- WYGRANE (phone frames) ---------- */
.win-card { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; width: 86vw; max-width: 760px; border-color: rgba(34,197,94,0.18); }
@media (min-width: 768px) { .win-card { gap: 24px; padding: 26px; } }
.phone-frame {
    border: 5px solid #17171a; border-radius: 26px; overflow: hidden; background: #000; position: relative;
    aspect-ratio: 9 / 19; box-shadow: 0 24px 55px -14px rgba(0,0,0,0.9), 0 0 0 1px #2a2a2e;
    transition: transform 0.45s var(--ease-out);
}
@media (min-width: 768px) { .phone-frame { border-width: 7px; border-radius: 38px; } }
.phone-frame::before {
    content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    width: 58px; height: 14px; background: #17171a; border-radius: 0 0 10px 10px; z-index: 30;
}
.phone-frame:hover { transform: translateY(-7px) scale(1.01); }
.phone-frame video, .phone-frame img.shot { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.win-tag {
    position: absolute; bottom: 12px; left: 12px; z-index: 20;
}
.win-tag .badge { display: inline-block; background: var(--green); color: #fff; font-size: 8.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 999px; margin-bottom: 6px; }
.win-tag .amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 3.4vw, 30px); text-shadow: 0 2px 18px rgba(0,0,0,0.9); }
.win-verified { position: absolute; top: 34px; right: 10px; z-index: 20; background: rgba(0,0,0,0.7); border: 1px solid rgba(34,197,94,0.5); color: var(--green); font-size: 8.5px; font-weight: 900; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(8px); }
.phone-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 45%); z-index: 10; }

/* ---------- FEATURES ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.feat { text-align: center; padding: 30px 18px; }
@media (min-width: 768px) { .feat { padding: 42px 26px; } }
.feat .ico {
    width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,45,45,0.09); border: 1px solid rgba(255,45,45,0.22);
    transition: transform 0.4s var(--ease-spring);
}
.feat:hover .ico { transform: scale(1.12) rotate(-4deg); }
.feat .ico svg { width: 26px; height: 26px; }
.feat h3 { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 12.5px; }
.ico-red { color: var(--red); } .ico-green { color: var(--green); } .ico-blue { color: var(--blue); } .ico-gold { color: var(--gold); }
.feat.g .ico { background: rgba(34,197,94,0.09); border-color: rgba(34,197,94,0.22); }
.feat.b .ico { background: rgba(59,130,246,0.09); border-color: rgba(59,130,246,0.22); }
.feat.y .ico { background: rgba(212,175,55,0.09); border-color: rgba(212,175,55,0.22); }

/* ---------- KROKI ---------- */
.steps { display: grid; gap: 28px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step { text-align: center; position: relative; padding: 10px; }
.step .n {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--red);
    background: rgba(255,45,45,0.08); border: 2px solid rgba(255,45,45,0.3);
    position: relative;
}
.step .n::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px dashed rgba(255,45,45,0.25); animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.step:last-child .n { color: var(--green); background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.3); }
.step:last-child .n::after { border-color: rgba(34,197,94,0.25); }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13px; max-width: 260px; margin: 0 auto; }

/* ---------- SKLEP ---------- */
.shop-card {
    width: 292px; display: flex; flex-direction: column; position: relative;
    padding: 34px 24px 24px; border-radius: var(--radius-lg);
    background: var(--panel); border: 2px solid var(--border);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
@media (min-width: 768px) { .shop-card { width: 372px; padding: 42px 32px 32px; } }
.shop-card:hover { transform: translateY(-10px); }
.shop-card.red { border-color: rgba(255,45,45,0.55); animation: glowR 3.4s ease-in-out infinite; }
.shop-card.blue { border-color: rgba(59,130,246,0.6); animation: glowB 3.4s ease-in-out infinite; }
.shop-card.purple { border-color: rgba(139,92,246,0.6); animation: glowP 3.4s ease-in-out infinite; }
.shop-card.orange { border-color: rgba(249,115,22,0.6); box-shadow: 0 0 44px rgba(249,115,22,0.1); }
.shop-card.gold { border-color: rgba(212,175,55,0.65); box-shadow: 0 0 50px rgba(212,175,55,0.12); }
@keyframes glowR { 0%,100% { box-shadow: 0 0 22px rgba(255,45,45,0.1); } 50% { box-shadow: 0 0 46px rgba(255,45,45,0.3); } }
@keyframes glowB { 0%,100% { box-shadow: 0 0 22px rgba(59,130,246,0.1); } 50% { box-shadow: 0 0 46px rgba(59,130,246,0.3); } }
@keyframes glowP { 0%,100% { box-shadow: 0 0 22px rgba(139,92,246,0.1); } 50% { box-shadow: 0 0 46px rgba(139,92,246,0.3); } }
.shop-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 7px 20px; border-radius: 999px; white-space: nowrap; color: #fff; z-index: 5;
}
.shop-name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; }
.shop-sub { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.75; margin-top: 2px; }
.shop-price { text-align: center; margin: 22px 0 24px; }
.shop-price .old { color: var(--dim); text-decoration: line-through; font-weight: 700; font-size: 15px; }
.shop-price .now { font-family: var(--font-display); font-size: 60px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.shop-price .cur { font-size: 12px; color: var(--dim); font-weight: 400; letter-spacing: 0.25em; }
.shop-price .omnibus { display: block; font-size: 9.5px; color: var(--dim); margin-top: 7px; }
.shop-feats { flex: 1; display: grid; gap: 10px; margin-bottom: 22px; }
.shop-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: #cfcfd6; font-weight: 600; }
.shop-feats li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.shop-legal { background: rgba(0,0,0,0.45); border: 1px solid var(--border); border-radius: 14px; padding: 14px; display: grid; gap: 10px; margin-bottom: 18px; }
.shop-legal label { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; line-height: 1.5; }
.shop-legal a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.shop-legal a:hover { color: var(--red); }
.cc {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; min-width: 20px; border: 2px solid #3a3a40; border-radius: 6px;
    background: #000; cursor: pointer; position: relative; transition: all 0.25s;
}
.cc:checked { background: var(--red); border-color: var(--red); box-shadow: 0 0 14px rgba(255,45,45,0.4); }
.cc:checked::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 900; }
.buy-btn:disabled { opacity: 0.16; cursor: not-allowed; filter: grayscale(1); }
.fomo { font-size: 10px; color: #ff8f8f; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; margin: 10px 0 2px; animation: pulse 2s infinite; }
.scar { font-size: 10.5px; color: var(--red); font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; animation: pulse 2s infinite; }

/* ---------- BUKMACHER ---------- */
.bookie { display: grid; gap: 30px; padding: 30px 22px; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .bookie { grid-template-columns: 1fr 1.6fr; padding: 60px; gap: 56px; align-items: center; } }
.bookie::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); opacity: 0.4; }
.bookie-logo {
    width: 170px; height: 170px; margin: 0 auto; border-radius: 50%;
    background: #0d0d10; border: 3px solid rgba(255,45,45,0.2);
    display: flex; align-items: center; justify-content: center; padding: 26px;
}
@media (min-width: 768px) { .bookie-logo { width: 210px; height: 210px; } }
.bookie-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.bookie-stat { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 18px; padding: 22px 14px; text-align: center; }
.bookie-stat .v { color: var(--red); font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 4vw, 40px); }
.bookie-stat .l { font-size: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: 0.14em; color: var(--muted); margin-top: 4px; }
.legal-note { font-size: 10px; color: var(--dim); line-height: 1.7; margin-top: 14px; }

/* ---------- OPINIE ---------- */
.rev-grid { display: grid; gap: 14px; max-height: 560px; overflow-y: auto; padding-right: 6px; }
@media (min-width: 640px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .rev-grid { grid-template-columns: 1fr 1fr 1fr; max-height: 640px; } }
.rev-grid::-webkit-scrollbar { width: 4px; }
.rev-grid::-webkit-scrollbar-thumb { background: #232327; border-radius: 8px; }
.rev { padding: 22px; }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 15px; color: #fff;
    background: linear-gradient(135deg, var(--red-deep), #7a0a0a);
    border: 2px solid rgba(255,45,45,0.4);
}
.rev .who { font-weight: 800; font-size: 13.5px; }
.rev .since { font-size: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: 0.1em; color: var(--dim); }
.stars { display: flex; gap: 2px; margin-bottom: 10px; }
.stars svg { width: 13px; height: 13px; }
.star-on { color: #eab308; fill: #eab308; }
.star-off { color: #3a3a40; }
.rev p { font-size: 13px; color: #cfcfd6; font-style: italic; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; background: var(--panel); overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--border-hi); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; text-align: left; font-weight: 700; font-size: 14px; }
.faq-q:hover { color: var(--red); }
.faq-q svg { width: 17px; height: 17px; color: var(--dim); flex-shrink: 0; transition: transform 0.35s var(--ease-out); }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-a > div { padding: 0 20px 18px; color: var(--muted); font-size: 13.5px; border-top: 1px solid var(--border); padding-top: 14px; }

/* ---------- BLOG TEASER / ARTYKUŁY ---------- */
.posts-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .posts-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .thumb { height: 150px; background: linear-gradient(135deg, #16060a, #240a0d 55%, #12060e); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.post-card .thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 70% 20%, rgba(255,45,45,0.22), transparent 70%); }
.post-card .thumb svg { width: 44px; height: 44px; color: rgba(255,255,255,0.55); z-index: 1; }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red); margin-bottom: 8px; }
.post-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 13px; flex: 1; }
.post-card .more { margin-top: 16px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .more { color: var(--red); }

/* Artykuł (prose) */
.article-hero { padding: 60px 0 30px; }
.article-hero h1 { font-size: clamp(30px, 6vw, 54px); margin: 14px 0 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; color: var(--dim); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.prose { max-width: 760px; margin: 0 auto; font-size: 16.5px; line-height: 1.85; color: #d6d6dc; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(22px, 3.4vw, 30px); margin: 46px 0 16px; color: #fff; line-height: 1.2; }
.prose h3 { font-size: 19px; margin: 32px 0 12px; color: #fff; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { color: #ff8f8f; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--red); }
.prose strong { color: #fff; }
.prose blockquote { border-left: 3px solid var(--red); padding: 14px 22px; margin: 24px 0; background: rgba(255,45,45,0.05); border-radius: 0 14px 14px 0; font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--border-hi); padding: 11px 14px; text-align: left; }
.prose th { background: rgba(255,255,255,0.05); font-weight: 800; color: #fff; }
.prose .box { background: var(--panel); border: 1px solid var(--border-hi); border-radius: 18px; padding: 24px; margin: 28px 0; }
.prose .box.warn { border-color: rgba(255,45,45,0.35); background: rgba(255,45,45,0.05); }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); padding: 18px 0 0; }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { opacity: 0.4; }

/* ---------- CTA BANNER ---------- */
.cta-banner { text-align: center; padding: 54px 24px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .cta-banner { padding: 80px 60px; } }
.cta-banner::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(70% 120% at 50% 0%, rgba(255,34,0,0.16), transparent 70%);
}
.cta-banner h2 { font-size: clamp(28px, 5vw, 46px); margin-bottom: 14px; position: relative; }
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; position: relative; }

/* ---------- STOPKA ---------- */
footer { border-top: 1px solid var(--border); background: #030303; padding: 60px 0 40px; text-align: center; position: relative; z-index: 50; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 30px; margin: 26px 0; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.foot-links a:hover { color: var(--red); }
.socials { display: flex; justify-content: center; gap: 14px; margin: 24px 0; }
.socials a { width: 44px; height: 44px; border-radius: 50%; background: #121215; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.3s; }
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.foot-legal { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 26px; display: grid; gap: 14px; }
.foot-legal p { font-size: 10px; line-height: 1.8; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.foot-legal .warn18 { color: #d8d8de; font-weight: 800; }
.foot-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.copy { margin-top: 28px; font-size: 9.5px; color: #3a3a40; text-transform: uppercase; letter-spacing: 0.2em; }

/* ---------- AGE GATE ---------- */
#age-gate { position: fixed; inset: 0; z-index: 10000; background: rgba(3,3,3,0.97); display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center; }
#age-gate .inner { max-width: 430px; width: 100%; padding: 40px 30px; border: 2px solid rgba(255,45,45,0.55); box-shadow: 0 0 130px rgba(255,45,45,0.25); animation: rise 0.5s var(--ease-out); }
#age-gate img { width: 82px; height: 82px; border-radius: 20px; margin: 0 auto 22px; border: 1px solid rgba(255,45,45,0.3); }
#age-gate h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 24px; margin-bottom: 10px; }
#age-gate p { color: var(--dim); font-size: 12.5px; margin-bottom: 26px; }
#age-gate .leave { display: block; margin-top: 16px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: #44444a; }
#age-gate .leave:hover { color: var(--muted); }

/* ---------- STICKY CTA (mobile) ---------- */
#sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 7000;
    background: rgba(5,5,5,0.94); backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,45,45,0.3);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
    transform: translateY(110%); transition: transform 0.4s var(--ease-out);
}
#sticky-cta.show { transform: translateY(0); }
@media (min-width: 1024px) { #sticky-cta { display: none; } }
#sticky-cta .p-lbl { font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
#sticky-cta .p-val { display: flex; gap: 8px; align-items: baseline; }
#sticky-cta .p-old { color: var(--dim); text-decoration: line-through; font-size: 12px; font-weight: 700; }
#sticky-cta .p-new { color: var(--red); font-size: 19px; font-weight: 900; }

/* ---------- TOAST ---------- */
#toast {
    position: fixed; bottom: 84px; left: 12px; z-index: 8000; max-width: 300px;
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    transform: translateX(-130%); transition: transform 0.5s var(--ease-spring);
    pointer-events: none;
}
#toast.show { transform: translateX(0); }
@media (min-width: 1024px) { #toast { bottom: 26px; left: 26px; } }
#toast .ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
#toast .nm { font-size: 12px; font-weight: 800; }
#toast .ac { font-size: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: 0.1em; color: var(--dim); }

/* ---------- BACK TO TOP ---------- */
#btt {
    position: fixed; bottom: 78px; right: 14px; z-index: 7500;
    width: 44px; height: 44px; border-radius: 50%;
    background: #121215; border: 1px solid var(--border-hi); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.8); pointer-events: none; transition: all 0.3s;
}
#btt.show { opacity: 1; transform: scale(1); pointer-events: auto; }
#btt:hover { background: var(--red); }
@media (min-width: 1024px) { #btt { bottom: 24px; } }

/* ---------- COOKIES ---------- */
#cookies {
    position: fixed; inset: 0; z-index: 999990;
    background: rgba(3,3,3,0.92); backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center; padding: 18px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
#cookies.show { opacity: 1; pointer-events: auto; }
#cookies .inner { max-width: min(520px, calc(100vw - 32px)); width: 100%; padding: 34px 22px; text-align: center; display: grid; gap: 18px; overflow: hidden; }
#cookies .btn { flex: 0 1 auto; min-width: 0; white-space: nowrap; }
#cookies h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; }
#cookies .desc { font-size: 12.5px; color: var(--muted); }
#cookies .row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; }
.toggle { position: relative; width: 42px; height: 22px; background: #333; border-radius: 999px; cursor: pointer; transition: 0.3s; display: inline-block; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: 0.3s; }
input:checked + .toggle { background: var(--red); }
input:checked + .toggle::after { left: 22px; }
#cookie-details { display: none; border-top: 1px solid var(--border); padding-top: 16px; gap: 14px; }
#cookie-details.open { display: grid; }

/* ---------- EXIT POPUP ---------- */
#exit-pop { position: fixed; inset: 0; z-index: 100000; background: rgba(3,3,3,0.94); backdrop-filter: blur(14px); display: none; align-items: center; justify-content: center; padding: 18px; }
#exit-pop.show { display: flex; }
#exit-pop .inner { max-width: 460px; width: 100%; padding: 44px 30px 34px; text-align: center; border: 2px solid rgba(255,45,45,0.6); position: relative; box-shadow: 0 0 160px rgba(255,45,45,0.25); animation: rise 0.4s var(--ease-out); max-height: 90vh; overflow-y: auto; }
#exit-pop .close { position: absolute; top: 12px; right: 14px; color: var(--dim); }
#exit-pop .close:hover { color: #fff; }
#exit-pop h2 { font-family: var(--font-display); font-size: 40px; text-transform: uppercase; color: var(--red); letter-spacing: -0.01em; }
#exit-pop .prices { display: flex; justify-content: center; align-items: baseline; gap: 14px; margin: 16px 0 4px; }
#exit-pop .prices .old { color: var(--dim); text-decoration: line-through; font-size: 19px; font-weight: 700; }
#exit-pop .prices .new { color: var(--red); font-size: 44px; font-weight: 900; font-family: var(--font-display); }
#exit-pop .omni { font-size: 9.5px; color: var(--dim); margin-bottom: 18px; }
#exit-pop .timer { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.5); border: 1px solid var(--border); padding: 9px 20px; border-radius: 14px; font-weight: 900; letter-spacing: 0.3em; color: var(--red); font-variant-numeric: tabular-nums; margin-bottom: 20px; }

/* ---------- SCROLL REVEAL ---------- */
.sr { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.sr.vis { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.08s; } .sr-d2 { transition-delay: 0.16s; } .sr-d3 { transition-delay: 0.24s; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .sr { opacity: 1; transform: none; }
    .hero .stagger { opacity: 1; transform: none; }
}
