:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-elevated: #1a1a1a;
  --border: #252525;
  --accent: #00c853;
  --accent-dim: rgba(0, 200, 83, 0.12);
  --accent-glow: rgba(0, 200, 83, 0.25);
  --text-primary: #f0f0f0;
  --text-secondary: #919191;
  --text-muted: #4a4a4a;

  --c-politics: #ff6b6b;
  --c-finance: #ffd93d;
  --c-sport: #6bcb77;
  --c-entertainment: #c77dff;
  --c-tech: #4ecdc4;
  --c-world: #00c853;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 200, 83, 0) 65%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

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

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #00853a);
  color: #04140a;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 18px var(--accent-glow);
}

.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.header nav a:hover {
  color: var(--text-primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 24px 56px;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 200, 83, 0.25);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #6bcb77);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #04140a;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(0, 200, 83, 0.35);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Category pills ---------- */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--accent);
}

/* ---------- Sections ---------- */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  transform: translateY(-3px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 19px;
  margin-bottom: 16px;
  background: var(--accent-dim);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.price-card.premium {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 117, 53, 0.03));
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #04140a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4px;
}

.price-name {
  font-size: 20px;
  font-weight: 800;
}

.accent-text {
  color: var(--accent);
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.price-amount .amount {
  font-size: 28px;
  font-weight: 900;
}

.price-amount .period {
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 3px;
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.feature-list li.muted {
  color: var(--text-muted);
}

.feature-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--border);
  color: var(--text-muted);
}

.feature-icon.yes {
  background: var(--accent-dim);
  color: var(--accent);
}

.feature-icon.yes.premium-yes {
  background: var(--accent);
  color: #04140a;
}

.price-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin: 28px 0 0;
}

/* ---------- Premium banner ---------- */
.banner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 64px;
  position: relative;
  z-index: 1;
}

.banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), rgba(0, 117, 53, 0.04));
  border: 1px solid rgba(0, 200, 83, 0.25);
}

.banner-text h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.banner-text p {
  color: var(--text-secondary);
  margin: 0;
  max-width: 420px;
}

/* ---------- Content pages (privacy/terms/support) ---------- */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  position: relative;
  z-index: 1;
}

.content h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.updated {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 40px;
}

.content section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.content section:last-of-type {
  border-bottom: none;
}

.content h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.content p,
.content li {
  color: var(--text-secondary);
  font-size: 15px;
}

.content ul {
  padding-left: 22px;
  margin: 12px 0;
}

.content li {
  margin-bottom: 6px;
}

.content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.content a:hover {
  border-bottom-color: var(--accent);
}

.faq dl {
  margin: 0;
}

.faq dt {
  font-weight: 700;
  margin-top: 20px;
  color: var(--text-primary);
}

.faq dd {
  color: var(--text-secondary);
  margin: 6px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-link:hover {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .hero h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .header nav {
    gap: 16px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
