/* ================================
   CSS Reset & Base Styles
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Updated to modern vibrant green color scheme, removed all red */
  /* Dark Green Mystery Colors */
  --black-deep: #051208;
  --black: #0a1a0f;
  --green-black: #0d1f14;
  --green-dark: #1a3d2a;
  --green: #2d5a3f;
  --green-medium: #3d7a52;

  /* Vibrant Green & Accent Colors */
  --green-bright: #34c759;
  --green-emerald: #2ecc71;
  --green-lime: #7fff00;
  --green-gold: #9acd32;
  --mint: #98ff98;
  --green-neon: #39ff14;

  /* Neutral Colors */
  --cream: #f0f7f1;
  --white: #ffffff;
  --gray: #b0c4b8;
  --gray-dark: #5a7063;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-ancient: "Cinzel", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Effects */
  --shadow-glow: 0 0 20px rgba(52, 199, 89, 0.4);
  --shadow-deep: 0 10px 50px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  /* Green gradient background */
  background: linear-gradient(180deg, var(--green-black) 0%, var(--black) 50%, var(--green-dark) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Ancient Paper Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Green texture overlay */
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(52, 199, 89, 0.03) 2px,
    rgba(52, 199, 89, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* ================================
   Warning Banner
   ================================ */
.warning-banner {
  position: sticky;
  top: 0;
  /* Changed from red to vibrant green gradient */
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1000;
  /* Green shadow instead of red */
  box-shadow: 0 4px 20px rgba(52, 199, 89, 0.5);
  border-bottom: 2px solid var(--green-neon);
  animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
  0%,
  100% {
    /* Green pulse animation */
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(52, 199, 89, 0.8);
  }
}

.warning-icon {
  font-size: 1.5rem;
  animation: shake 3s infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-5deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(5deg);
  }
}

.warning-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.warning-text strong {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.countdown-timer {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ================================
   Live Viewer Counter
   ================================ */
.viewer-counter {
  position: fixed;
  top: 80px;
  right: 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-deep);
  z-index: 999;
  border: 1px solid var(--green-bright);
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  /* Green pulse dot */
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--green-bright);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

#viewerCount {
  font-weight: 700;
  /* Bright green number */
  color: var(--green-bright);
  font-size: 1rem;
}

/* ================================
   Container & Layout
   ================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  position: relative;
  z-index: 2;
}

/* ================================
   Hero Section
   ================================ */
.hero {
  text-align: center;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.classified-stamp {
  display: inline-block;
  font-family: var(--font-ancient);
  font-size: 1.5rem;
  font-weight: 700;
  /* Changed from red to bright green */
  color: var(--green-neon);
  border: 3px solid var(--green-neon);
  padding: 0.5rem 2rem;
  transform: rotate(-3deg);
  margin-bottom: var(--space-md);
  letter-spacing: 0.3em;
  /* Green glow instead of black shadow */
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: stampAppear 1s ease-out;
}

@keyframes stampAppear {
  from {
    opacity: 0;
    transform: rotate(-3deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) scale(1);
  }
}

.headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  /* Bright emerald green color */
  color: var(--green-emerald);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  /* Green glow effect */
  text-shadow: 0 0 30px rgba(52, 199, 89, 0.6), 0 4px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  /* Changed from red to bright green */
  color: var(--green-bright);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subheadline {
  font-family: var(--font-ancient);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.warning-text-hero {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.9s both;
}

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

/* ================================
   Mystery Hook Section
   ================================ */
.mystery-hook {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
}

.hook-card {
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.8) 0%, rgba(10, 26, 15, 0.8) 100%);
  /* Green border */
  border: 2px solid var(--green-medium);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hook-card:hover {
  transform: translateY(-5px);
  /* Bright green border on hover */
  border-color: var(--green-bright);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
}

.hook-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.hook-card h3 {
  font-family: var(--font-ancient);
  font-size: 1.375rem;
  /* Emerald green title */
  color: var(--green-emerald);
  margin-bottom: var(--space-sm);
}

.hook-card p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ================================
   Video Section - ROCK STAR
   ================================ */
.video-section {
  margin: var(--space-md) 0 var(--space-xl);
  padding: 0 var(--space-md);
  position: relative;
}

.scroll-decoration {
  height: 30px;
  /* Green decorative pattern */
  background-image: repeating-linear-gradient(
    90deg,
    var(--green-medium) 0px,
    var(--green-bright) 10px,
    var(--green-medium) 20px
  );
  opacity: 0.4;
  border-radius: 4px;
  margin: 0 auto var(--space-sm);
  max-width: 900px;
}

.scroll-decoration.bottom {
  margin: var(--space-sm) auto 0;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-label {
  /* Changed from red to vibrant green */
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 8px 8px 0 0;
  animation: warningFlash 2s infinite;
}

@keyframes warningFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.video-wrapper vturb-smartplayer {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  /* Green glow around video */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(52, 199, 89, 0.3);
  background: var(--black);
}

.video-warning {
  text-align: center;
  /* Green warning text */
  color: var(--green-bright);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--space-sm);
  font-style: italic;
}

/* ================================
   Section Titles
   ================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  /* Bright green title */
  color: var(--green-bright);
  text-align: center;
  margin-bottom: var(--space-md);
  /* Green glow effect */
  text-shadow: 0 0 20px rgba(52, 199, 89, 0.5);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   Timeline Section
   ================================ */
.timeline-section {
  padding: var(--space-xl) var(--space-md);
  margin: var(--space-xl) 0;
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.3) 0%, rgba(10, 26, 15, 0.3) 100%);
  border-radius: 16px;
  /* Green border */
  border: 2px solid var(--green-medium);
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 3px;
  /* Green timeline line */
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green-medium) 100%);
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 5px;
  width: 24px;
  height: 24px;
  /* Green timeline dot */
  background: var(--green-bright);
  border-radius: 50%;
  border: 4px solid var(--green-black);
  box-shadow: 0 0 15px var(--green-bright);
}

.timeline-year {
  font-family: var(--font-ancient);
  font-size: 1.5rem;
  font-weight: 700;
  /* Bright green year */
  color: var(--green-bright);
  min-width: 150px;
  text-align: right;
  padding-right: var(--space-md);
}

.timeline-content {
  flex: 1;
  padding-left: var(--space-lg);
}

.timeline-content h4 {
  font-family: var(--font-ancient);
  font-size: 1.375rem;
  /* Mint green subtitle */
  color: var(--mint);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.7;
}

/* ================================
   Artifacts Section
   ================================ */
.artifacts-section {
  padding: var(--space-xl) var(--space-md);
  margin: var(--space-xl) 0;
  animation: fadeInScale 0.8s ease-out;
}

.artifacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.artifact-card {
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.6) 0%, rgba(10, 26, 15, 0.6) 100%);
  /* Green border */
  border: 2px solid var(--green-medium);
  border-radius: 12px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.artifact-card:hover {
  transform: translateY(-5px);
  /* Bright green border on hover */
  border-color: var(--green-bright);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
}

.artifact-image {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  /* Green glow on icon */
  filter: drop-shadow(0 0 10px var(--green-bright));
}

.artifact-card h4 {
  font-family: var(--font-ancient);
  font-size: 1.5rem;
  /* Emerald green title */
  color: var(--green-emerald);
  margin-bottom: var(--space-sm);
}

.artifact-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
  padding: var(--space-xl) var(--space-md);
  margin: var(--space-xl) 0;
  animation: fadeInScale 0.8s ease-out;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.5) 0%, rgba(10, 26, 15, 0.5) 100%);
  /* Green border */
  border: 1px solid var(--green-medium);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: var(--transition);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  /* Bright green border on hover */
  border-color: var(--green-bright);
  box-shadow: 0 10px 40px rgba(52, 199, 89, 0.3);
}

.testimonial-stars {
  /* Green stars */
  color: var(--green-bright);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.2em;
}

.testimonial-text {
  color: var(--cream);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  /* Green border color */
  border-top: 1px solid rgba(52, 199, 89, 0.2);
  padding-top: var(--space-sm);
}

.testimonial-author strong {
  display: block;
  /* Bright green name */
  color: var(--green-bright);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.875rem;
}

/* ================================
   Research Section
   ================================ */
.research-section {
  padding: var(--space-xl) var(--space-md);
  margin: var(--space-xl) 0;
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.3) 0%, rgba(10, 26, 15, 0.3) 100%);
  border-radius: 16px;
  animation: fadeInScale 0.8s ease-out;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.research-badge {
  text-align: center;
  padding: var(--space-lg);
  transition: var(--transition);
}

.research-badge:hover {
  transform: translateY(-5px);
}

.research-badge img {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  /* Green glow on badges */
  filter: drop-shadow(0 0 15px var(--green-bright));
}

.research-badge h4 {
  font-family: var(--font-ancient);
  font-size: 1.25rem;
  /* Emerald green title */
  color: var(--green-emerald);
  margin-bottom: var(--space-xs);
}

.research-badge p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  /* Vibrant green gradient button */
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-emerald) 50%, var(--green-bright) 100%);
  background-size: 200% 100%;
  color: var(--black-deep);
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  /* Green glow around button */
  box-shadow: 0 15px 50px rgba(52, 199, 89, 0.5), 0 0 30px rgba(52, 199, 89, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.6s ease-out, buttonGlow 2s infinite alternate;
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

@keyframes buttonGlow {
  from {
    box-shadow: 0 15px 50px rgba(52, 199, 89, 0.5), 0 0 30px rgba(52, 199, 89, 0.4);
  }
  to {
    box-shadow: 0 15px 60px rgba(52, 199, 89, 0.8), 0 0 40px rgba(52, 199, 89, 0.6);
  }
}

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

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

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

.button-lock {
  font-size: 1.75rem;
}

.button-arrow {
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
  transform: translateX(8px);
}

/* ================================
   Guarantee Box
   ================================ */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.6) 0%, rgba(10, 26, 15, 0.6) 100%);
  /* Bright green border */
  border: 3px solid var(--green-bright);
  border-radius: 16px;
  padding: var(--space-xl);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
  animation: fadeInScale 0.6s ease-out;
}

.guarantee-seal {
  position: relative;
  flex-shrink: 0;
}

.guarantee-seal svg {
  width: 80px;
  height: 80px;
  /* Bright green seal */
  color: var(--green-bright);
  filter: drop-shadow(0 0 10px var(--green-bright));
}

.seal-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  /* Green text */
  color: var(--green-bright);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.guarantee-content h3 {
  font-family: var(--font-ancient);
  font-size: 1.5rem;
  /* Emerald green title */
  color: var(--green-emerald);
  margin-bottom: var(--space-sm);
}

.guarantee-content p {
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.guarantee-list {
  list-style: none;
  padding: 0;
}

.guarantee-list li {
  color: var(--gray);
  padding: 0.25rem 0;
  font-size: 0.9375rem;
}

/* ================================
   Stats Grid
   ================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  animation: fadeInScale 0.6s ease-out;
}

.stat-card {
  /* Green gradient background */
  background: linear-gradient(135deg, rgba(29, 90, 63, 0.5) 0%, rgba(10, 26, 15, 0.5) 100%);
  /* Green border */
  border: 1px solid var(--green-medium);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  /* Bright green border on hover */
  border-color: var(--green-bright);
  box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--gray);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================
   Footer Section
   ================================ */
.footer {
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xl);
  text-align: center;
}

.footer-notice {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  background: rgba(29, 90, 63, 0.3);
  border: 2px solid var(--green-bright);
  border-radius: 12px;
  padding: var(--space-lg);
}

.footer-notice p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.footer-notice strong {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.footer-links a {
  color: var(--green-bright);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.footer-links a:hover {
  color: var(--green-emerald);
  text-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
  .warning-banner {
    flex-direction: column;
    text-align: center;
  }

  .viewer-counter {
    top: auto;
    bottom: 20px;
    right: 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 50px;
  }

  .timeline-item::before {
    left: 10px;
  }

  .timeline-year {
    text-align: left;
    min-width: auto;
    padding-right: 0;
  }

  .timeline-content {
    padding-left: 0;
  }

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

  .cta-button {
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
