/* ========================================
   MOONPENGU LANDING PAGE - STYLES
   ======================================== */

/* Color Variables */
:root {
  --bg-dark: #0a0e27;
  --bg-darker: #0d0f1a;
  --text-white: #ffffff;
  --text-light: #cccccc;
  --neon-green: #00ff00;
  --neon-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --neon-purple: #8000ff;
  --accent-purple: #6a0dad;

  --shadow-glow-green: 0 0 20px rgba(0, 255, 0, 0.5);
  --shadow-glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
  --shadow-glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
  --shadow-glow-purple: 0 0 20px rgba(128, 0, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(13, 15, 26, 0.9) 100%);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
  padding: 1rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: 'Bebas Neue', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transition: width 0.3s ease;
}

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

.btn-primary-nav {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg-dark);
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary-nav:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
  transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.35rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Toggle */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--neon-cyan);
    padding: 2rem;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar-nav.active {
    max-height: 400px;
  }

  .btn-primary-nav {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 255, 0.3), rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.3));
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.3), rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.3));
  }
  50% {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.2), rgba(128, 0, 255, 0.3));
  }
  100% {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.3), rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.3));
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-headline {
  font-family: 'Bebas Neue', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.neon-glow {
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-magenta),
    0 0 30px var(--neon-purple),
    0 0 40px rgba(255, 0, 255, 0.5);
  animation: neonGlowPulse 3s ease-in-out infinite;
}

@keyframes neonGlowPulse {
  0%, 100% {
    text-shadow:
      0 0 10px var(--neon-cyan),
      0 0 20px var(--neon-magenta),
      0 0 30px var(--neon-purple),
      0 0 40px rgba(255, 0, 255, 0.5);
  }
  50% {
    text-shadow:
      0 0 20px var(--neon-cyan),
      0 0 30px var(--neon-magenta),
      0 0 40px var(--neon-purple),
      0 0 50px rgba(255, 0, 255, 0.8);
  }
}

.hero-subheadline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-light);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
  transform: scale(1.05);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  color: var(--text-white);
  box-shadow: var(--shadow-glow-magenta);
}

.btn-secondary:hover {
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
  transform: scale(1.05);
}

.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.mascot-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
  animation: mascotFloat 3s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Animated Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float linear infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-duration: 6s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 40%;
  animation-duration: 8s;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 60%;
  animation-duration: 10s;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-duration: 7s;
  animation-delay: 0.5s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-duration: 9s;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    bottom: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
  }
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-mascot {
    order: -1;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   CONTRACT ADDRESS SECTION
   ======================================== */

.contract-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-cyan);
}

.contract-card {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  box-shadow: var(--shadow-glow-cyan);
  flex-wrap: wrap;
}

.contract-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  background: rgba(10, 14, 39, 0.9);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 10px;
  text-shadow: 0 0 5px var(--neon-green);
  outline: none;
}

.btn-copy {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: var(--bg-dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-cyan);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-copy:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  transform: scale(1.05);
}

.btn-copy.copied {
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.contract-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contract-card {
    flex-direction: column;
  }

  .contract-input,
  .btn-copy {
    width: 100%;
  }
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
  padding: 4rem 1.5rem;
}

.section-title {
  font-family: 'Bebas Neue', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

/* ========================================
   HOW TO BUY SECTION
   ======================================== */

.how-to-buy {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 2px solid var(--neon-magenta);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-card {
  padding: 2rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px solid var(--neon-magenta);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(128, 0, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-glow-magenta);
  transform: translateY(-5px);
}

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

.step-number {
  font-family: 'Bebas Neue', serif;
  font-size: 3rem;
  font-weight: bold;
  color: var(--neon-magenta);
  text-shadow: 0 0 20px var(--neon-magenta);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.how-to-buy > .container > div {
  text-align: center;
}

/* ========================================
   TOKENOMICS SECTION
   ======================================== */

.tokenomics {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 2px solid var(--neon-purple);
}

.tokenomics-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tokenomics-card {
  padding: 2rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tokenomics-card:hover {
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
}

.tokenomics-card h3 {
  color: var(--neon-purple);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.tokenomics-value {
  font-family: 'Bebas Neue', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.tokenomics-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========================================
   CHART SECTION
   ======================================== */

.chart-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 2px solid var(--neon-green);
}

.chart-card {
  padding: 3rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px dashed var(--neon-green);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-glow-green);
}

.chart-placeholder {
  font-size: 1.5rem;
  color: var(--neon-green);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--neon-green);
}

.chart-hint {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ========================================
   ROADMAP SECTION
   ======================================== */

.roadmap {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 2px solid var(--neon-magenta);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
  direction: ltr;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--neon-cyan);
  border: 4px solid var(--bg-dark);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.timeline-item.completed .timeline-marker {
  background: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green);
}

.timeline-item.current .timeline-marker {
  background: var(--neon-magenta);
  box-shadow: 0 0 20px var(--neon-magenta);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.3);
  }
}

.timeline-content {
  padding: 1.5rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px solid var(--neon-cyan);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.timeline-item.completed .timeline-content {
  border-color: var(--neon-green);
  opacity: 0.7;
}

.timeline-item.current .timeline-content {
  border-color: var(--neon-magenta);
  box-shadow: var(--shadow-glow-magenta);
}

.timeline-item.future .timeline-content {
  border-color: var(--neon-purple);
  opacity: 0.6;
}

.timeline-content h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
  }

  .timeline-marker {
    left: 0;
  }

  .timeline-content {
    margin-left: 2rem;
  }
}

/* ========================================
   MEME GALLERY SECTION
   ======================================== */

.meme-gallery {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 2px solid var(--neon-cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: bold;
  font-size: 1.2rem;
  border: 2px solid var(--neon-cyan);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-placeholder {
  box-shadow: var(--shadow-glow-cyan);
  transform: scale(1.05);
}

.gallery-card p {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  background: rgba(13, 15, 26, 0.9);
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */

.community {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 2px solid var(--neon-magenta);
}

.community-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.social-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.social-btn {
  padding: 1rem 2rem;
  border: 2px solid;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  font-size: 0.95rem;
}

.social-btn.telegram {
  border-color: var(--neon-magenta);
  color: var(--neon-magenta);
  box-shadow: var(--shadow-glow-magenta);
}

.social-btn.telegram:hover {
  background: var(--neon-magenta);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.social-btn.twitter {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.social-btn.twitter:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.social-btn.discord {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: var(--shadow-glow-purple);
}

.social-btn.discord:hover {
  background: var(--neon-purple);
  color: var(--text-white);
  box-shadow: 0 0 30px rgba(128, 0, 255, 0.8);
}

.alert-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(13, 15, 26, 0.8);
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  box-shadow: var(--shadow-glow-cyan);
}

.alert-form-wrapper h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-align: center;
}

.alert-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#alertEmail,
#alertType {
  padding: 1rem;
  background: rgba(10, 14, 39, 0.9);
  border: 2px solid var(--neon-green);
  color: var(--text-white);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

#alertEmail:focus,
#alertType:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

#alertEmail::placeholder {
  color: rgba(204, 204, 204, 0.6);
}

#alertType {
  cursor: pointer;
}

.alert-form button {
  padding: 1rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg-dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow-cyan);
}

.alert-form button:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  transform: scale(1.02);
}

.form-message {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.5rem;
  color: var(--neon-green);
}

.form-message.error {
  color: #ff6b6b;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 2px solid var(--neon-purple);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 2px solid var(--neon-purple);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(13, 15, 26, 0.8);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: rgba(13, 15, 26, 0.8);
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 2.5rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-cyan);
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  background: rgba(10, 14, 39, 0.9);
  color: var(--text-light);
  border-top: 1px solid var(--neon-purple);
  font-size: 0.95rem;
  line-height: 1.6;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-darker);
  border-top: 3px solid var(--neon-green);
  padding: 3rem 1.5rem 1rem;
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.footer-column a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-disclaimer {
  background: rgba(13, 15, 26, 0.8);
  padding: 1.5rem;
  border: 1px solid var(--neon-magenta);
  border-radius: 10px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-disclaimer p {
  margin: 0;
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom p {
  margin: 0.5rem 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
    margin-left: 40px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
  }

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

@media (max-width: 640px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-logo {
    font-size: 1rem;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .hero-ctas {
    gap: 0.75rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .steps-grid {
    gap: 1rem;
  }

  .social-buttons {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-headline {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}
