:root {
  --bg: #0b0b0b;
  --card: #141414;
  --ink: #f4f4f4;
  --muted: #b7b7b7;
  --accent: #c8ff00;
  --accent-dark: #9ed600;
  --red: #e30613;
  --gold: #f5c518;
  --dark: #050505;
  --soft: #222;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #050505;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

a { color: var(--accent); }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 80;
}

.skip:focus { top: 12px; }

.pin {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 32px;
}

.top {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid #1f1f1f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.brand img,
.brand-mark {
  width: 168px;
  height: 45px;
  border-radius: 0;
  object-fit: contain;
}

.open-btn {
  background: var(--gold);
  color: #111;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero-block {
  padding: 0 8px;
  position: relative;
}

.back {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(11, 11, 11, 0.88);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back span {
  width: 12px;
  height: 12px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  margin-left: 4px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  border: 1px solid #2a2a2a;
}

.hero-card img,
.hero-card amp-img {
  width: 100%;
  height: 100%;
}

.hero-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-card amp-img img,
.hero-card img {
  object-fit: cover;
}

.spark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(200, 255, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  font-size: 1.25rem;
  font-weight: 800;
}

.engage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 8px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--gold);
}

.save {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.28);
  text-transform: uppercase;
}

.save:hover { color: #fff; background: #b80410; }

.info {
  padding: 4px 18px 8px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.avatar {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 800;
}

h2 {
  margin: 18px 18px 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cta-stack {
  display: grid;
  gap: 10px;
  margin: 8px 0 6px;
}

.cta {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cta-red { background: var(--red); color: #fff; }
.cta-red:hover { color: #fff; background: #b80410; }
.cta-dark { background: var(--accent); color: #111; }
.cta-dark:hover { color: #111; }
.cta-soft { background: var(--soft); color: var(--ink); border: 1px solid #333; }
.cta-soft:hover { color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 10px;
}

.tile {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid #2a2a2a;
}

.tile amp-img,
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 8px;
  border-radius: 11px;
  background: rgba(11, 11, 11, 0.9);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.article {
  padding: 8px 18px 0;
}

.article h2 {
  margin: 18px 0 12px;
}

.article p,
.article li {
  font-size: 0.95rem;
  color: var(--ink);
}

.article p { margin: 0 0 12px; }

.notice {
  background: #1a2208;
  border: 1px solid #3d4d12;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--accent);
}

.faq-item {
  background: var(--card);
  border-radius: 14px;
  margin: 0 0 8px;
  box-shadow: var(--shadow);
  border: 1px solid #262626;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 14px;
  list-style: none;
}

.faq-item p { margin: 0; padding: 0 14px 12px; color: var(--muted); }

amp-accordion section {
  background: var(--card);
  border-radius: 14px;
  margin: 0 0 8px;
  box-shadow: var(--shadow);
  border: 1px solid #262626;
}

amp-accordion h3 {
  font-size: 0.95rem;
  padding: 12px 14px;
  margin: 0;
}

.faq-panel { padding: 0 14px 12px; color: var(--muted); font-size: 0.92rem; }

.foot {
  padding: 22px 18px 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.foot a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 10px;
}

.legal-page .pin { padding: 0 0 40px; }
.legal-copy { padding: 8px 18px 0; }
.legal-copy h1 { font-size: 1.4rem; }

.crumbs {
  display: flex;
  gap: 8px;
  padding: 12px 18px 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.crumbs a { color: var(--muted); text-decoration: none; }

.list { padding-left: 1.1rem; margin: 0 0 14px; }
.list li { margin: 0 0 8px; }

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  margin: 0 18px 8px;
  box-shadow: var(--shadow);
  border: 1px solid #262626;
}

.article .step { margin: 0 0 8px; }

.num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.muted { color: var(--muted); font-size: 0.9rem; margin: 0; }

.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.providers li {
  background: var(--card);
  border: 1px solid #2f2f2f;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
}

@media (min-width: 760px) {
  body { background: #000; }
  .pin {
    max-width: 480px;
    margin: 28px auto;
    min-height: calc(100vh - 56px);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    border: 1px solid #222;
  }
  .top { border-radius: 24px 24px 0 0; }
}
