:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --dark: #0f0f0f;
  --darker: #000;
  --light: #f5f5f5;
  --gray: rgba(255,255,255,0.08);

  --link-normal: #e57373;
  --link-hover: #ff4444;
  --link-active: #ff2222;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* ALL NORMAL LINKS = RED */
a:not(.cta-button),
a:not(.cta-button):link,
a:not(.cta-button):visited {
  color: var(--link-normal) !important;
  text-decoration: none !important;
}

a:not(.cta-button):hover,
a:not(.cta-button):focus {
  color: var(--link-hover) !important;
  text-decoration: underline !important;
}

a:not(.cta-button):active {
  color: var(--link-active) !important;
}

/* CTA BUTTONS stay WHITE text + red background */
.cta-button,
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
  color: white !important;
  background: var(--primary);
}

.cta-button:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.05);
}

/* Nav = white → red on hover */
nav a { color: var(--light) !important; }
nav a:hover { color: var(--link-hover) !important; }

/* Footer = gray → red on hover */
footer a { color: #aaaaaa !important; text-decoration: underline !important; }
footer a:hover { color: var(--link-hover) !important; }

/* Rest of your styles (unchanged) */
header {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(211,47,47,0.2);
}

nav { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 600; }
.mobile-menu { display: none; cursor: pointer; font-size: 1.8rem; }

main { margin-top: 90px; padding: 4rem 2rem; max-width: 1400px; margin-left: auto; margin-right: auto; }

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; margin: 3rem 0 1.5rem; }

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
}

footer {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--darker);
  margin-top: 6rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0,0,0,0.98); padding: 2rem; }
  .nav-links.active { display: flex; }
  .mobile-menu { display: block; }
  h1 { font-size: 3rem; }
}
