:root{
  --bg:#0b0d10;
  --text:#ffffff;
  --muted:#9aa3b2;

  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.14);

  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 40px rgba(0,0,0,.22);

  --r2:24px;

  --accent:#06b6d4;
  --accent2:#7c3aed;

  --good:#22c55e;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(1100px 700px at 120% 20%, rgba(6,182,212,.10), transparent 60%),
    var(--bg);
  min-height:100svh;
  overflow-x:hidden;
}

/* ✅ miejsce pod dolny nav (mobile) */
body{
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}
@media (min-width:861px){
  body{ padding-bottom: 0; }
}

.page{ padding:18px; }
@media (max-width:700px){ .page{ padding:0; } }

.wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
}

/* HERO */
.hero{
  position:relative;
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
  min-height: 260px;
}
@media (max-width:700px){
  .hero{ border-radius:0; border-left:0; border-right:0; }
}
.heroImg{
  position:absolute; inset:0;
  background: url("/img/start-bg.jpg") center / cover no-repeat;
  filter:saturate(1.05);
}
.heroImg::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 600px at 30% 20%, rgba(0,0,0,.22), rgba(0,0,0,.82));
}

.backLink{
  position:absolute;
  right:14px; top:14px;
  z-index:3;
  font-size:12px;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
.backLink:hover{ border-color: var(--line2); }

.heroInner{
  position:relative; z-index:2;
  padding:18px 18px 16px;
  text-align:center;
}

.mark{ display:flex; justify-content:center; margin-top:4px; margin-bottom:12px; }
.markDot{
  width:56px;height:56px;
  border-radius:999px;
  display:grid; place-items:center;
  font-weight:1000;
  color:#0b0d10;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.title{ font-size:26px; font-weight:900; letter-spacing:-0.02em; }
.sub{ margin-top:8px; color:rgba(154,163,178,.95); font-size:13px; }

.metaRow{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:8px; margin-top:12px;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(154,163,178,.95);
  font-size:12px;
  font-weight:800;
}
.chip strong{ color: rgba(255,255,255,.92); font-weight:900; }

/* YouTube promo – kompaktowe (bez pustej przestrzeni) */
.ytPromo{
  margin:12px auto 0;
  max-width: 720px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  color: rgba(226,232,240,.95);
}
.ytPromo:hover{ border-color: rgba(255,255,255,.18); filter:brightness(1.03); }
.ytDot{
  width:10px;height:10px;border-radius:99px;
  background:#ff3b30;
  box-shadow:0 0 14px rgba(255,59,48,.35);
  flex:0 0 auto;
}
.ytTxt{
  font-size:12px;
  color: rgba(226,232,240,.92);
  line-height:1.25;
}
.ytGo{ margin-left:auto; opacity:.85; font-weight:900; }

/* CARD */
.card{
  margin-top:16px;
  border-radius: var(--r2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow2);
  padding:16px;
}
@media (max-width:700px){
  .card{ border-radius:0; border-left:0; border-right:0; margin-top:0; }
}

.lead p{
  color:rgba(154,163,178,.96);
  font-size:13px;
  line-height:1.55;
}

.hr{ height:1px; background: rgba(255,255,255,.10); margin:14px 0; }

/* PICK ROWS */
.pick{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pickRow{
  text-decoration:none;
  color:var(--text);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, border-color .12s ease, filter .12s ease;
}
.pickRow:hover{
  border-color: rgba(255,255,255,.18);
  filter: brightness(1.03);
  transform: translateY(-2px);
}
.rowIcon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  font-weight:1000;
  color:#0b0d10;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex:0 0 auto;
}
.rowMeta{ min-width:0; }
.rowTitle{ font-weight:1000; }
.rowSub{ margin-top:2px; font-size:12px; color:rgba(154,163,178,.95); }
.rowGo{ margin-left:auto; font-weight:1000; color:rgba(255,255,255,.82); }

.pickRow.evelstar .rowIcon{ background: linear-gradient(135deg,#22c55e,#06b6d4); }
.pickRow.uber .rowIcon{ background: linear-gradient(135deg,#06b6d4,#7c3aed); }
.pickRow.glovo .rowIcon{ background: linear-gradient(135deg,#facc15,#f97316); }

/* INTERSTITIAL */
.redirectCard{
  margin-top:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding:14px;
}
.redirectTop{ display:flex; align-items:center; gap:12px; }
.spinner{
  width:22px;height:22px;border-radius:999px;
  border:2px solid rgba(255,255,255,.20);
  border-top-color: rgba(6,182,212,.85);
  animation: spin .75s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.redirectTitle{ font-weight:1000; }
.redirectText{
  margin-top:2px;
  color:rgba(154,163,178,.95);
  font-size:12px;
  line-height:1.35;
}
.redirectBtns{
  margin-top:12px;
  display:flex;
  gap:10px;
}
.btnGhost,.btnPrimary{
  text-decoration:none;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border-radius:999px;
  padding:10px 12px;
  font-size:12px;
  font-weight:1000;
  flex:1;
}
.btnGhost{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(238,242,255,.95);
}
.btnPrimary{
  border:none;
  color:#0b0d10;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}
.btnPrimary:hover{ filter:brightness(1.05); }

/* FAQ box */
.faqBox{
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px;
}
.faqHead{ font-weight:1000; margin-bottom:8px; }
.faqItem{ margin-top:10px; }
.faqQ{ font-weight:900; color:rgba(255,255,255,.92); }
.faqA{ margin-top:6px; color:rgba(154,163,178,.96); font-size:13px; line-height:1.45; }

/* FOOT */
.foot{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:center;
  color:rgba(167,176,198,.85);
  font-size:12px;
}
.foot a{
  color:rgba(238,242,255,.9);
  text-decoration:none;
  font-weight:900;
}
.foot a:hover{ opacity:.9; }

/* DESKTOP: full width feeling */
@media (min-width:861px){
  .wrap{ max-width:1240px; }
  .card{ padding:18px; }
  .pick{ gap:12px; }
  .pickRow{ padding:14px; }
  .rowSub{ font-size:13px; }
}
