:root{
  --bg:#0b0c10;
  --bg2:#07080b;
  --card:#12141b;
  --line:rgba(255,255,255,.085);
  --text:#f4f6ff;
  --muted:#a9b0c0;
  --red:#ff2d2d;
  --red2:#ff4b4b;
  --gold:#ffcc66;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(950px 540px at 18% 10%, rgba(255,45,45,.23), transparent 60%),
    radial-gradient(900px 600px at 82% 18%, rgba(255,75,75,.15), transparent 62%),
    linear-gradient(180deg, var(--bg2), var(--bg) 35%, var(--bg2));
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}
.container{width:min(var(--max), 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.72);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; min-width: 220px}
.brand .mark{
  width: 140px;
  height: 90px;
  border-radius:14px;
  /* background: linear-gradient(135deg, rgba(255,45,45,.95), rgba(255,75,75,.55)); */
  /* box-shadow: 0 16px 40px rgba(255,45,45,.18); */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.brand .mark img{width: 140px;height: 90px;display:block}
.brand b{letter-spacing:.2px; font-weight:950}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{color:var(--muted); font-weight:900; font-size:14px}
.navlinks a:hover{color:#fff}
.badge{
  font-size:12px; font-weight:950;
  padding:7px 10px; border-radius:999px;
  background: linear-gradient(90deg, rgba(255,45,45,.98), rgba(255,75,75,.78));
  box-shadow: 0 10px 30px rgba(255,45,45,.18);
}

.hero{
  padding:32px 0 18px;
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(18,20,27,.96), rgba(18,20,27,.80));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-left{padding:26px}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  color:var(--muted); font-weight:950; font-size:13px;
}
.kicker span{
  width:8px; height:8px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255,45,45,.15);
}
h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{color:var(--muted); line-height:1.75; font-size:16px; margin:0 0 14px}

.ctaRow{display:flex; flex-wrap:wrap; gap:12px; margin-top:14px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px; font-weight:950;
  border:1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  color:#fff;
  transition: transform .15s ease, filter .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.03)}
.btn.primary{
  border:none;
  background: linear-gradient(90deg, var(--red), var(--red2));
  box-shadow: 0 16px 40px rgba(255,45,45,.22);
}

/* BIG CTA */
.bigCTA{
  position:relative;
  padding:16px 20px;
  border-radius:18px;
  font-size:18px;
  letter-spacing:.2px;
  text-transform: uppercase;
}
.bigCTA::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:20px;
  background: conic-gradient(from 180deg, rgba(255,45,45,.0), rgba(255,45,45,.95), rgba(255,204,102,.75), rgba(255,75,75,.85), rgba(255,45,45,.0));
  filter: blur(10px);
  opacity:.65;
  z-index:-1;
  animation: shimmerGlow 2.4s ease-in-out infinite;
}
.bigCTA::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background: radial-gradient(600px 120px at 20% 20%, rgba(255,255,255,.18), transparent 55%);
  pointer-events:none;
}
@keyframes spinGlow{to{transform: rotate(360deg)}}
.pulse{
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-2px)}
}

.smallnote{font-size:13px; color:var(--muted); margin-top:12px; line-height:1.6}

.hero-right{position:relative; min-height: 340px}
.hero-right .imgwrap{height:100%; position:relative}
.hero-right img{width:100%; height:100%; object-fit:cover; display:block; filter: contrast(1.06) saturate(1.06)}
.overlay{
  position:absolute;
  inset:0;
  /* background: linear-gradient(90deg, rgba(11,12,16,.92), rgba(11,12,16,.20)); */
}
.stamp{
  position:absolute; left:18px; bottom:18px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  font-weight:950;
}

.section{padding:12px 0 42px}
.grid{display:grid; gap:14px; grid-template-columns: repeat(12, 1fr)}
.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}
.box{padding:18px}
.box h2, .box h3{margin:0 0 8px}
.box h2{font-size:18px}
.box p{margin:0; color:var(--muted); line-height:1.75}
.ul{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted); line-height:1.9}
.hr{height:1px; background:var(--line); margin:14px 0}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  color:var(--muted); font-weight:900; font-size:12px;
  background: rgba(255,255,255,.03);
}
.pill strong{color:#fff}

.cards{display:grid; gap:14px; grid-template-columns: repeat(12, 1fr)}
.post{grid-column: span 4}
.post a{display:block}
.post .thumb{height:190px; border-bottom:1px solid var(--line); background:#0e1016}
.post .thumb img{width:100%; height:100%; object-fit:cover; display:block}
.post .meta{padding:16px}
.post .meta .k{display:flex; justify-content:space-between; align-items:center; gap:10px; color:var(--muted); font-size:12px; font-weight:850}
.post .meta h3{margin:10px 0 8px; font-size:18px; line-height:1.25}
.post .meta p{margin:0; color:var(--muted); line-height:1.6}

.breadcrumb{
  display:flex; flex-wrap:wrap; gap:8px;
  color:var(--muted); font-weight:850; font-size:13px;
}
.breadcrumb a{color:#fff}
.breadcrumb span{opacity:.9}

.article{padding:26px}
.article h1{font-size: clamp(26px, 3vw, 40px); margin:12px 0 10px}
.article .sub{color:var(--muted); font-weight:900; font-size:13px}
.article .cover{height:320px; border-radius:16px; overflow:hidden; border:1px solid var(--line); margin:18px 0}
.article .cover img{width:100%; height:100%; object-fit:cover; display:block}
.article p{color:var(--muted); line-height:1.95; margin:12px 0}
.article h2{margin:22px 0 8px; font-size:20px}
.article h3{margin:14px 0 6px; font-size:17px}
.article ul{margin:10px 0 12px; padding-left:18px; color:var(--muted); line-height:1.95}
.article .callout{
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  line-height:1.85;
  margin:16px 0;
}
.toc{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:16px;
  padding:14px 16px;
  margin:14px 0;
}
.toc b{display:block; margin-bottom:10px}
.toc a{display:block; padding:6px 0; color:#fff; font-weight:850}
.toc a small{color:var(--muted); font-weight:900}

.footer{
  border-top:1px solid var(--line);
  color:var(--muted);
  padding:22px 0 30px;
  font-size:13px;
}
.footer a{color:#fff; font-weight:800}
.backtop{
  position:fixed; right:18px; bottom:18px;
  width:46px; height:46px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
}
.backtop:hover{transform: translateY(-1px)}
@media (max-width: 940px){
  .hero{grid-template-columns: 1fr}
  .hero-right{min-height: 260px}
  .post{grid-column: span 12}
  .navlinks{display:none}
  .article .cover{height:220px}
  .brand{min-width:auto}
}
/* --- Content helpers (SEO articles) --- */
.note{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:14px 14px;
  margin:14px 0;
  color: var(--text);
}
.note strong{color:#fff}
.ol{
  margin:10px 0 0;
  padding-left:18px;
}
.ol li{margin:8px 0; color: var(--text)}
.ol li strong{color:#fff}
.article a{color:#fff; text-decoration:underline; text-decoration-color: rgba(255,255,255,.35)}
.article a:hover{text-decoration-color: rgba(255,255,255,.75)}
/* FAQ blocks */
.faqWrap{margin-top:10px}
.faqItem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:16px;
  padding:14px 14px;
  margin:10px 0;
}
.faqItem .q{font-weight:950; color:#fff; margin-bottom:6px}
.faqItem .ans{color: var(--muted); line-height:1.55}
