/* ============================================================
   SASUKE UCHIHA — CINEMATIC LANDING PAGE
   Color palette: #0d0d0d | #8b0000 | #cc0000 | #6a0dad | #fff
   ============================================================ */

:root {
  --bg: #0d0d0d;
  --bg-2: #111111;
  --bg-3: #161616;
  --blood-red: #8b0000;
  --crimson: #cc0000;
  --violet: #6a0dad;
  --violet-light: #9b30ff;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --text-dim: #666666;
  --glow-red: rgba(204, 0, 0, 0.4);
  --glow-violet: rgba(106, 13, 173, 0.4);
  --glow-red-strong: rgba(204, 0, 0, 0.7);
  --transition: 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', cursive;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--crimson);
}

.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
  transition: background var(--transition), backdrop-filter var(--transition);
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--crimson));
  animation: sharingan-pulse 3s ease-in-out infinite;
}

.nav-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- HERO SECTION ---- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/sasuke-sharingan-dark.jpg');
  background-size: cover;
  background-position: center 20%;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 45%,
    rgba(13,13,13,0.2) 75%,
    rgba(13,13,13,0.5) 100%
  );
}

/* Red vignette bottom */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 0 7%;
  max-width: 780px;
  padding-top: 5rem;
}

.hero-clan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid rgba(204,0,0,0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-clan-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--crimson);
}

.hero-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
  text-shadow:
    0 0 80px rgba(204,0,0,0.3),
    0 0 160px rgba(204,0,0,0.15);
}

.hero-name-accent {
  display: block;
  color: var(--crimson);
  text-shadow:
    0 0 40px rgba(204,0,0,0.8),
    0 0 80px rgba(204,0,0,0.4);
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline strong {
  color: var(--text);
  font-style: normal;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--crimson);
  color: var(--text);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 30px rgba(204,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  background: #e00000;
  box-shadow: 0 6px 40px rgba(204,0,0,0.65);
  transform: translateY(-2px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateY(3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ---- DIVIDER ---- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204,0,0,0.3), transparent);
  margin: 0;
}

/* ---- GENERAL SECTIONS ---- */
section {
  position: relative;
  padding: 7rem 7% 6rem;
  overflow: hidden;
}

/* ---- UCHIHA LEGACY SECTION ---- */
#legacy {
  background: var(--bg);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.legacy-image-wrap {
  position: relative;
}

.legacy-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
  filter: saturate(0.8) contrast(1.1);
}

.legacy-image-frame {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 2px;
  pointer-events: none;
}

.legacy-image-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(204,0,0,0.2), 0 0 60px rgba(204,0,0,0.15);
  border-radius: 2px;
  pointer-events: none;
}

.legacy-text .section-label { margin-bottom: 0.75rem; }

.legacy-text .section-title { margin-bottom: 1.2rem; }

.legacy-events {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legacy-event {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.event-marker {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.event-marker svg {
  width: 16px;
  height: 16px;
  color: var(--crimson);
}

.event-text h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.event-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- VENGEANCE SECTION ---- */
#vengeance {
  background: linear-gradient(to bottom, var(--bg), #0f0208, var(--bg));
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.vengeance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.vengeance-image-col {
  order: 2;
  position: relative;
}

.vengeance-image-col img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 2px;
  filter: saturate(0.75) contrast(1.15);
}

.vengeance-text-col {
  order: 1;
}

.vengeance-timeline {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.vengeance-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--crimson), var(--violet), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 10px var(--crimson);
  transform: translateX(-3.5px);
}

.timeline-item h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- POWERS SECTION ---- */
#powers {
  background: var(--bg);
  padding-bottom: 8rem;
}

.powers-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.powers-header .body-text {
  margin: 0 auto;
}

.powers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}

.power-card {
  position: relative;
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.04);
}

.power-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.power-card:hover::before {
  opacity: 1;
}

.power-card:hover {
  background: rgba(20, 5, 5, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 10px 50px rgba(204, 0, 0, 0.2);
}

.power-card.violet-accent:hover {
  box-shadow: 0 10px 50px rgba(106, 13, 173, 0.25);
}

.power-card.violet-accent::before {
  background: linear-gradient(to right, transparent, var(--violet-light), transparent);
}

.power-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.3);
  transition: all 0.35s ease;
}

.power-card.violet-accent .power-icon {
  background: rgba(106,13,173,0.1);
  border-color: rgba(106,13,173,0.3);
}

.power-card:hover .power-icon {
  box-shadow: 0 0 20px var(--glow-red);
  background: rgba(204,0,0,0.18);
}

.power-card.violet-accent:hover .power-icon {
  box-shadow: 0 0 20px var(--glow-violet);
  background: rgba(106,13,173,0.18);
}

.power-icon svg {
  width: 26px;
  height: 26px;
  color: var(--crimson);
}

.power-card.violet-accent .power-icon svg {
  color: var(--violet-light);
}

.power-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.power-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid rgba(204,0,0,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.power-card.violet-accent .power-badge {
  color: var(--violet-light);
  border-color: rgba(155,48,255,0.35);
}

.power-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.powers-image-banner {
  margin-top: 5rem;
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
}

.powers-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.7) contrast(1.2);
}

.powers-image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.9) 0%,
    rgba(13,13,13,0.3) 50%,
    rgba(13,13,13,0.9) 100%
  );
}

.powers-banner-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.powers-banner-text h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text);
  letter-spacing: 0.15em;
  text-shadow: 0 0 40px rgba(204,0,0,0.6);
}

.powers-banner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---- REDEMPTION SECTION ---- */
#redemption {
  background: linear-gradient(to bottom, var(--bg), #080514, var(--bg));
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.redemption-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.redemption-image-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 2px;
  filter: saturate(0.7) contrast(1.15);
}

.redemption-image-col {
  position: relative;
}

.redemption-image-col::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(106,13,173,0.25);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.redemption-events {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.redemption-event {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.redemption-event .event-marker {
  background: rgba(106,13,173,0.12);
  border-color: rgba(106,13,173,0.35);
}

.redemption-event .event-marker svg {
  color: var(--violet-light);
}

/* ---- QUOTES SECTION ---- */
#quotes {
  background: var(--bg-3);
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.quotes-header {
  text-align: center;
  margin-bottom: 4rem;
}

.quotes-header .section-label {
  justify-content: center;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.quote-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 8rem;
  color: rgba(204,0,0,0.07);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}

.quote-card:hover::before {
  color: rgba(204,0,0,0.12);
}

.quote-card:hover {
  background: rgba(204,0,0,0.04);
  border-color: rgba(204,0,0,0.15);
}

.quote-card.featured {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(135deg, rgba(139,0,0,0.08), rgba(106,13,173,0.08));
  border-color: rgba(204,0,0,0.2);
}

.quote-card.featured::before {
  left: 50%;
  transform: translateX(-50%);
  color: rgba(204,0,0,0.1);
}

.quote-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-card.featured .quote-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.quote-author {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
}

.quote-context {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  font-style: normal;
}

/* ---- FOOTER ---- */
footer {
  background: #080808;
  border-top: 1px solid rgba(204,0,0,0.15);
  padding: 3.5rem 7% 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand-logo img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px var(--crimson));
  opacity: 0.85;
}

.footer-brand-logo span {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--text);
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 220px;
}

.footer-nav h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav ul a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.footer-nav ul a:hover {
  color: var(--crimson);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-socials h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-bottom p span {
  color: var(--crimson);
}

.uchiha-crest {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- KEYFRAMES ---- */
@keyframes sharingan-pulse {
  0%, 100% { filter: drop-shadow(0 0 8px var(--crimson)); transform: rotate(0deg); }
  50% { filter: drop-shadow(0 0 14px var(--crimson)); transform: rotate(180deg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(204,0,0,0.3); }
  50% { box-shadow: 0 0 30px rgba(204,0,0,0.7); }
}

/* ---- BACKGROUND DECORATIONS ---- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-red {
  background: radial-gradient(circle, rgba(139,0,0,0.18) 0%, transparent 70%);
}

.bg-glow-violet {
  background: radial-gradient(circle, rgba(106,13,173,0.15) 0%, transparent 70%);
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.relative { position: relative; }
.z1 { position: relative; z-index: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .powers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section { padding: 5rem 5% 4rem; }

  nav { padding: 1rem 5%; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .nav-toggle { display: flex; position: relative; z-index: 1001; }

  .hero-content { padding: 0 5% 0 5%; padding-top: 6rem; }

  .hero-name { font-size: clamp(4rem, 18vw, 7rem); }

  .legacy-grid,
  .vengeance-inner,
  .redemption-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vengeance-image-col { order: 1; }
  .vengeance-text-col { order: 2; }

  .legacy-image-wrap img,
  .vengeance-image-col img,
  .redemption-image-col img {
    height: 300px;
  }

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

  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card.featured { grid-column: 1; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .powers-image-banner { height: 280px; }
}

@media (max-width: 480px) {
  .hero-name { font-size: clamp(3.5rem, 20vw, 5.5rem); }
  .section-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-cta { width: 100%; justify-content: center; }
}
