:root {
  --ai-blue: #3AA8FF;
  --ai-blue2: #6DD6FF;
  --ai-gold: #FFCE54;
  --ai-bg: #070A12;
  --ai-bg2: #0A0F1C;
  --card-bg: rgba(255, 255, 255, .06);
  --text-main: #F5F7FF;
}

body {
  background: linear-gradient(180deg, var(--ai-bg) 0%, var(--ai-bg2) 100%);
  color: var(--text-main);
  font-family: 'Tajawal', sans-serif;
    
  overflow-x: hidden;
}

/* Adding the glow backgrounds from index2 */
body::before {
  content: "";
  position: fixed;
  width: 680px;
  height: 680px;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
  z-index: -1;
  left: -220px;
  top: 120px;
  background: radial-gradient(circle, rgba(58, 168, 255, .85), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  width: 680px;
  height: 680px;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
  z-index: -1;
  right: -240px;
  top: 240px;
  background: radial-gradient(circle, rgba(255, 206, 84, .70), transparent 60%);
}

.cinematic-glow {
  box-shadow: 0 0 30px rgba(58, 168, 255, 0.2);
}

#timer {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 2px;
}

.hero-gradient {
  background: radial-gradient(circle at center, rgba(58, 168, 255, 0.15) 0%, transparent 70%);
}

.status-box {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .10);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  margin-bottom: 10px;
}

.pro-box {
  background: rgba(0, 0, 0, .65);
  border: 1px solid var(--ai-gold);
  box-shadow: inset 0 0 0 1px rgba(255, 206, 84, .16);
}

.icon-x {
  color: #FF3B3B;
  font-weight: bold;
}

.icon-check {
  color: #00D56A;
  font-weight: bold;
}

/* Continuous Marquee Slider */
.slider-container {
  display: flex;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
  animation: scroll 20s linear infinite;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.cta-btn {
  background: linear-gradient(90deg, var(--ai-blue), var(--ai-blue2));
  color: #04101f;
  border: 1px solid rgba(109, 214, 255, .55);
  box-shadow: 0 16px 55px rgba(58, 168, 255, .20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 70px rgba(58, 168, 255, .28);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 0 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Before/After Screenshot Match with Tilt */
.wild-card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
}

.badge-before {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-family: 'Tajawal', sans-serif;
  transform: rotate(-6deg);
  z-index: 10;
}

.badge-after {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--ai-gold);
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-family: 'Tajawal', sans-serif;
  transform: rotate(-6deg);
  z-index: 10;
}

/* Animations for Motivation Section */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(58, 168, 255, 0.15), inset 0 0 20px rgba(58, 168, 255, 0.05);
  }

  50% {
    box-shadow: 0 0 60px rgba(58, 168, 255, 0.3), inset 0 0 30px rgba(58, 168, 255, 0.1);
  }
}

.cinematic-glow-pulse {
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  /* Starts hidden, animation makes it appear */
}

@keyframes fadePulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.fade-pulse {
  animation: fadePulse 8s ease-in-out infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}