/* =========================
   BASE / TOKENS
========================= */
:root{
  --bg:#0b0d12;
  --bg2:#0f1115;
  --card:#121521;
  --card2:#0f1320;
  --line:#1b2030;
  --text:#eef0f6;
  --muted:#aeb4c2;
  --muted2:#8b92a4;
  --accent:#ff3c38;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
  --r12:12px;
  --r16:16px;
  --r22:22px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Segoe UI,Roboto,sans-serif;
  background:radial-gradient(1200px 600px at 20% -10%, rgba(255,60,56,.16), transparent 55%),
             radial-gradient(900px 500px at 90% 0%, rgba(120,160,255,.12), transparent 55%),
             var(--bg2);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.section-pad{
  padding:46px 0;
    margin-left: 10px;
    margin-right: 10px;
}

.muted{color:var(--muted2);font-size:14px}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255,60,56,.18), transparent 60%),
    linear-gradient(to top, rgba(11,13,18,.92), rgba(11,13,18,.25) 55%, rgba(11,13,18,.10));
}
.hero-inner{
  position:relative;
  padding:60px 0 56px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
.badge{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20,24,36,.7);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.badge-hot{
  background:rgba(255,60,56,.18);
  border-color:rgba(255,60,56,.35);
}
.badge-score{
  background:rgba(255,255,255,.06);
}

.hero-title{
  font-size:58px;
  line-height:1.04;
  letter-spacing:-.8px;
  margin:0 0 14px;
  max-width:920px;
}
.hero-sub{
  margin:0 0 22px;
  font-size:18px;
  line-height:1.65;
  color:rgba(255,255,255,.82);
  max-width:850px;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.22s;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
}
.btn-primary:hover{transform:translateY(-2px); opacity:.95}
.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
}
.btn-ghost:hover{transform:translateY(-2px); background:rgba(255,255,255,.10)}

/* =========================
   SECTION HEAD
========================= */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.section-head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.3px;
}
.section-link{
  color:rgba(255,255,255,.80);
  font-weight:700;
  font-size:14px;
}
.section-link:hover{color:#fff}

/* =========================
   FEATURED RAIL
========================= */
.rail{
  display:flex;
  gap:16px;
  overflow:auto;
  padding:6px 2px 14px;
  scroll-snap-type:x mandatory;
}
.rail::-webkit-scrollbar{height:10px}
.rail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.10);border-radius:999px}
.rail-card{
  flex:0 0 380px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r22);
  overflow:hidden;
  scroll-snap-align:start;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  transition:.22s;
}
.rail-card:hover{transform:translateY(-4px)}
.rail-media{height:210px; background:#0f1115}
.rail-media img{width:100%; height:100%; object-fit:cover}
.rail-body{padding:14px 14px 16px}
.rail-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}
.rail-kicker{font-size:12px; color:rgba(255,255,255,.70)}
.mini-score{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,60,56,.18);
  border:1px solid rgba(255,60,56,.35);
}
.rail-body h3{margin:0 0 8px; font-size:18px; line-height:1.25}
.rail-body p{margin:0; color:rgba(255,255,255,.72); font-size:14px; line-height:1.55}

/* =========================
   STAFF PICK SPOTLIGHT
========================= */
.spot{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--r22);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.spot-media{
  position:relative;
  min-height:320px;
  background:#0f1115;
}
.spot-media img{width:100%; height:100%; object-fit:cover}
.spot-grad{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,13,18,.85), transparent 55%);
}
.spot-score{
  position:absolute;
  top:14px; left:14px;
  font-weight:900;
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.spot-body{
  padding:20px 18px 20px 4px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.spot-kicker{color:rgba(255,255,255,.70); font-size:13px}
.spot-body h3{margin:0; font-size:30px; letter-spacing:-.4px}
.spot-body p{margin:0 0 4px; color:rgba(255,255,255,.76); line-height:1.65}

/* =========================
   LATEST CARDS GRID
========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.card2{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r22);
  overflow:hidden;
  transition:.22s;
}
.card2:hover{transform:translateY(-4px)}
.card2-media{
  position:relative;
  height:220px;
  background:#0f1115;
}
.card2-media img{width:100%; height:100%; object-fit:cover}
.card2-grad{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,13,18,.75), transparent 60%);
}
.card2-score{
  position:absolute;
  top:12px; right:12px;
  font-weight:900;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,60,56,.18);
  border:1px solid rgba(255,60,56,.35);
  backdrop-filter: blur(10px);
}
.card2-body{padding:14px 14px 16px}
.card2-meta{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.70);
  font-size:12px;
  margin-bottom:8px;
}
.card2-meta .dot{opacity:.55}
.card2-body h3{margin:0 0 8px; font-size:18px; line-height:1.25}
.card2-body p{margin:0; color:rgba(255,255,255,.72); font-size:14px; line-height:1.55}

/* =========================
   TOP BRANDS
========================= */
.brand-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
}
.brand-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:var(--r16);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  transition:.22s;
}
.brand-card:hover{transform:translateY(-3px); background:rgba(255,255,255,.05)}
.brand-left{display:flex; align-items:center; gap:12px}
.brand-letter{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:12px;
  font-weight:900;
  background:rgba(255,60,56,.16);
  border:1px solid rgba(255,60,56,.30);
}
.brand-name{font-weight:900}
.brand-sub{font-size:12px; color:rgba(255,255,255,.68); margin-top:2px}
.brand-arrow{opacity:.8; font-weight:900}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .brand-grid{grid-template-columns:repeat(3,1fr)}
  .hero-title{font-size:48px}
}
@media (max-width:800px){
  .hero{min-height:62vh}
  .hero-inner{padding:48px 0 40px}
  .hero-title{font-size:38px}
  .hero-sub{font-size:16px}
  .spot{grid-template-columns:1fr}
  .spot-body{padding:16px}
  .cards{grid-template-columns:1fr}
  .brand-grid{grid-template-columns:1fr}
  .wrap{padding:0 14px}
  .section-pad{padding:34px 0}
}
