:root {
  --bg: #0E0E10;
  --panel: #1A1517;
  --panel-2: #221A1C;
  --line: #332327;
  --text: #EAEAEA;
  --text-2: #B8B8B8;
  --prose: #D4D4D4;
  --accent: #E50914;
  --accent-2: #F5C518;
  --on-accent: #FFFFFF;
  --radius: 6px;
}

body {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(229, 9, 20, 0.08), transparent 60%), var(--bg);
}

.hero {
  background: linear-gradient(165deg, rgba(229, 9, 20, 0.06) 0%, transparent 45%), var(--panel);
  border-bottom: 1px solid var(--line);
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.section {
  border-top: 1px solid var(--line);
}

.card, .feature, .tile, .faq-item, .offer, .access {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover, .feature:hover, .tile:hover, .access:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature .icon, .access .icon {
  background: linear-gradient(135deg, var(--accent), #B8070F);
  border-radius: 50%;
  color: var(--on-accent);
}

.btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: calc(var(--radius) - 1px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
}

.btn-primary:hover {
  background: #FF0A16;
  transform: scale(1.03);
  box-shadow: 0 10px 32px rgba(229, 9, 20, 0.5);
}

.btn-ghost {
  border: 2px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(229, 9, 20, 0.08);
}

.badge, .offer-badge, .chip {
  background: linear-gradient(135deg, var(--accent-2), #D4A817);
  color: #0E0E10;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: calc(var(--radius) / 2);
}

.tab {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

.tile {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.tile .nm {
  font-weight: 700;
  color: var(--text);
}

.tile .gp {
  color: var(--text-2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.03em;
}

.offer {
  background: linear-gradient(120deg, rgba(229, 9, 20, 0.12), transparent 70%), var(--panel);
  border-left: 4px solid var(--accent);
}

.offer-amount {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.faq-q {
  font-weight: 700;
  color: var(--text);
}

.trust span {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) / 2);
  font-weight: 600;
  color: var(--text-2);
}

.t18 {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 900;
  border: none;
}

h2, h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

a:not(.btn):not(.tile):not(.tab) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(229, 9, 20, 0.4);
  transition: text-decoration-color 0.2s ease;
}

a:not(.btn):not(.tile):not(.tab):hover {
  text-decoration-color: var(--accent);
}