:root {
  --accent: #E50914;
  --accent-2: #F5C518;
  --bg: #0E0E10;
  --panel: #1A1517;
  --panel-2: #1A1517;
  --line: #332327;
  --text: #ffffff;
  --text-2: #e0e0e0;
  --prose: #d4d4d4;
  --on-accent: #ffffff;
  --radius: 12px;
}

html, body {
  background-color: var(--bg);
  color: var(--text);
  background: radial-gradient(circle at 50% -20%, #2a1515 0%, var(--bg) 60%);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  background: linear-gradient(180deg, var(--text) 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

p, li, td {
  color: var(--prose);
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

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

.card, .feature, .tile, .faq-item, .tab {
  background-color: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover, .feature:hover, .tile:hover, .faq-item:hover, .tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  border-color: #4a2c33;
}

.btn, button {
  background-color: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover, button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(229, 9, 20, 0.5);
  background-color: #ff1f30;
}

.badge, .score {
  background-color: var(--accent-2);
  color: #000000;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.site-header {
  background-color: rgba(26, 21, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .nav-links a {
  color: var(--text-2);
  font-weight: 600;
}

.site-header .nav-links a:hover {
  color: var(--accent);
}

::selection {
  background-color: var(--accent);
  color: var(--on-accent);
}

input, textarea {
  background-color: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.75rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

th, td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background-color: rgba(51, 35, 39, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-2);
}

tr:last-child td {
  border-bottom: none;
}

img {
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
}

.btn.pulse {
  animation: pulse-accent 2s infinite;
}