/* ============================================
   BASE STYLES - Premium Degen Theme
   ============================================ */

:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a12;
  --accent-green: #00d4ff;
  --accent-purple: #bf00ff;
  --accent-gold: #ffd700;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --glow-green: 0 0 20px rgba(0, 212, 255, 0.5);
  --glow-purple: 0 0 20px rgba(191, 0, 255, 0.5);
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  padding-top: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent FOUC - hide until CSS loads */
  opacity: 1;
  visibility: visible;
}

.scrollable-home {
  padding-top: 0;
  overflow-x: hidden;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  animation: sectionFadeIn 1s ease-out;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.dark {
  color: var(--accent-green);
  background: none;
  -webkit-text-fill-color: var(--accent-green);
  text-shadow: var(--glow-green);
  font-weight: 800;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple)) !important;
  border-radius: 8px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer !important;
  z-index: 99999 !important;
  transition: all 0.3s ease;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(0, 255, 157, 0.5);
  touch-action: manipulation;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: var(--glow-green);
}

.hamburger:hover {
  background: linear-gradient(135deg, #00ffb3, #d400ff) !important;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.6);
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
  z-index: 9998;
  transition: left 0.4s ease, visibility 0s 0.4s, opacity 0.4s ease;
  padding: 60px 20px 20px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateZ(0);
  will-change: left;
}

.side-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.side-menu.open::before {
  opacity: 1;
  pointer-events: auto;
}

.side-menu.open {
  left: 0;
  visibility: visible;
  opacity: 1;
  transition: left 0.4s ease, visibility 0s 0s, opacity 0.4s ease;
}

.close-menu {
  position: fixed !important;
  top: 10px !important;
  right: 10px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border: 3px solid #ffffff !important;
  color: #ffffff !important;
  font-size: 32px !important;
  cursor: pointer !important;
  width: 55px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 999999 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5) !important;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1;
  visibility: visible !important;
  opacity: 1 !important;
}

.close-menu:hover,
.close-menu:active,
.close-menu:focus {
  background: rgba(255, 255, 255, 0.6) !important;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
  outline: none;
}

.side-menu h3 {
  color: var(--accent-green);
  font-size: 24px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(0, 255, 157, 0.3);
  padding-bottom: 10px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  padding: 15px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.side-menu li.clickable {
  cursor: pointer;
}

.side-menu li.clickable:hover {
  background: rgba(0, 255, 157, 0.2);
  transform: translateX(5px);
  border-left: 3px solid var(--accent-green);
}

.side-menu li:not(.clickable):hover {
  background: rgba(191, 0, 255, 0.1);
  transform: translateX(5px);
}

.badge {
  background: linear-gradient(135deg, var(--accent-purple), #9000cc);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--glow-purple);
}

.badge.active {
  background: linear-gradient(135deg, var(--accent-green), #00cc7a);
  box-shadow: var(--glow-green);
}

/* ============================================
   SCROLL BANNER - REMOVED
   ============================================ */

.scroll-banner {
  display: none;
}

/* ============================================
   SECTION 1: HERO - Premium Degen Style
   ============================================ */

.hero-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Background glow effects */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(191, 0, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: auroraLeft 8s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(0, 255, 157, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: auroraRight 8s ease-in-out infinite alternate-reverse;
}

@keyframes auroraLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes auroraRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-10%, 5%) scale(1.1);
    opacity: 0.8;
  }
}

.hero {
  text-align: center;
  margin-top: 25vh;
  position: relative;
  z-index: 10;
}

/* Hero Logo Styling */
.hero-logo {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo .main-logo {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 40px rgba(191, 0, 255, 0.3));
  }

  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.7)) drop-shadow(0 0 50px rgba(191, 0, 255, 0.5));
  }
}

@media (max-width: 768px) {
  .hero-logo .main-logo {
    width: 100px;
    height: 100px;
  }
}

.hero h1 {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple), var(--accent-green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: gradientShift 4s linear infinite;
  text-transform: uppercase;
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(191, 0, 255, 0.8));
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.btn {
  background: #ffffff;
  padding: 18px 36px;
  margin: 15px;
  border-radius: 12px;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

/* ============================================
   SECTION 2: FEATURES
   ============================================ */

.features-section {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  animation: slideInUp 0.8s ease-out backwards;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 255, 157, 0.05);
  border-color: var(--accent-green);
  box-shadow: var(--glow-green), 0 15px 40px rgba(0, 255, 157, 0.2);
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #fff;
  font-size: 24px;
  margin: 15px 0;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ============================================
   SECTION 3: HOW IT WORKS
   ============================================ */

.how-it-works-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  color: var(--text-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
}

.step-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-box:hover {
  background: rgba(0, 255, 157, 0.05);
  border-color: var(--accent-green);
  transform: translateY(-5px);
  box-shadow: var(--glow-green);
}

.step-box .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 auto 20px;
  box-shadow: var(--glow-green);
}

.step-box h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
  color: #ffffff;
  font-weight: 700;
}

.step-box p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Legacy step styles (keep for compatibility) */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #9945FF;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  animation: bounceIn 0.8s ease-out backwards;
}

.step:nth-child(1) .step-number {
  animation-delay: 0.1s;
}

.step:nth-child(3) .step-number {
  animation-delay: 0.2s;
}

.step:nth-child(5) .step-number {
  animation-delay: 0.3s;
}

.step:nth-child(7) .step-number {
  animation-delay: 0.4s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.step h3 {
  font-size: 22px;
  margin: 15px 0;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step p {
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.step-arrow {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION 4: TEMPLATES
   ============================================ */

.templates-section {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.template-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInScale 0.8s ease-out backwards;
}

.template-card:nth-child(1) {
  animation-delay: 0.1s;
}

.template-card:nth-child(2) {
  animation-delay: 0.2s;
}

.template-card:nth-child(3) {
  animation-delay: 0.3s;
}

.template-card:nth-child(4) {
  animation-delay: 0.4s;
}

.template-card:nth-child(5) {
  animation-delay: 0.5s;
}

.template-card:nth-child(6) {
  animation-delay: 0.6s;
}

.template-card:nth-child(7) {
  animation-delay: 0.7s;
}

.template-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-purple), 0 15px 40px rgba(191, 0, 255, 0.2);
  border: 1px solid var(--accent-purple);
}

.template-preview {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.dark-gold-preview {
  background: linear-gradient(135deg, #0b0b0b, #2a1f00);
}

.solana-preview {
  background: linear-gradient(135deg, #0a0218, #3b0ca5, #14f195);
}

.neon-preview {
  background: linear-gradient(135deg, #05010a, #ff00ff, #00ffff);
}

.jupiter-preview {
  background: linear-gradient(135deg, #FCC00A, #4EBAE9, #9945FF);
}

.sunset-preview {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #fdc830);
}

.ocean-preview {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.forest-preview {
  background: linear-gradient(135deg, #0a2e0a, #1a4d1a, #2d6a2d);
}

.purple-preview {
  background: linear-gradient(135deg, #1a0033, #2d0052, #4a0080);
}

.template-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 10px 0;
}

/* ============================================
   SECTION 5: PRICING
   ============================================ */

.pricing-section {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  animation: slideInUp 0.8s ease-out backwards;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.4s;
}

.pricing-card.premium-card,
.pricing-card.featured {
  border-color: var(--accent-green);
  background: rgba(0, 255, 157, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow-green), 0 20px 50px rgba(0, 255, 157, 0.2);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffffff, #cccccc);
  color: black;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.pricing-card h3 {
  font-size: 28px;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.pricing-btn {
  display: inline-block;
  background: rgba(0, 255, 157, 0.1);
  color: var(--accent-green);
  padding: 15px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 255, 157, 0.3);
}

.pricing-btn.premium-btn {
  background: linear-gradient(135deg, var(--accent-green), #00cc7a);
  color: #000000;
  border: none;
}

.pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-green);
}

/* ============================================
   SECTION 6: ROADMAP
   ============================================ */

.roadmap-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  padding: 100px 20px;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-purple));
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 40px;
  animation: slideInLeft 0.8s ease-out backwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--bg-primary);
  border: 4px solid rgba(0, 255, 157, 0.5);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.completed .timeline-dot {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: var(--glow-green);
}

.timeline-item.active .timeline-dot {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: var(--glow-purple);
  }

  50% {
    box-shadow: 0 0 40px rgba(191, 0, 255, 1);
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid rgba(0, 255, 157, 0.3);
}

.timeline-item.completed .timeline-content {
  border-left-color: var(--accent-green);
}

.timeline-item.active .timeline-content {
  border-left-color: var(--accent-purple);
  background: rgba(191, 0, 255, 0.1);
}

.timeline-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: white;
  font-size: 22px;
  margin: 10px 0;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.timeline-content li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

/* ============================================
   SECTION 7: CTA
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-green);
  border-bottom: 4px solid var(--accent-purple);
  box-shadow: inset 0 0 100px rgba(0, 255, 157, 0.05);
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: white;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple), var(--accent-green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  animation: gradientShift 4s linear infinite;
}

.cta-section p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
  font-weight: 500;
}

.big-btn {
  padding: 25px 60px;
  font-size: 24px;
  background: linear-gradient(135deg, var(--accent-green), #00cc7a);
  color: black;
  box-shadow: var(--glow-green);
  font-weight: 700;
  border: none;
  border-radius: 16px;
}

.big-btn:hover {
  background: linear-gradient(135deg, #00ffb3, var(--accent-green));
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.8), 0 15px 60px rgba(0, 255, 157, 0.5);
}

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

.main-footer {
  background: transparent;
  padding: 60px 20px 20px;
  color: white;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  right: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 10px;
  text-shadow: 0 0 15px rgba(77, 212, 228, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

footer {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 100;
  box-sizing: border-box;
}

footer a {
  margin: 0 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #cccccc;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ============================================
   PANEL & FORMS
   ============================================ */

.panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

.panel h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.panel h3 {
  color: #ffffff;
  margin: 20px 0 10px;
}

.panel p {
  color: rgba(255, 255, 255, 0.9);
}

input,
textarea,
select {
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #666;
}

textarea {
  min-height: 80px;
  resize: vertical;
  font-family: Arial, sans-serif;
}

label {
  display: block;
  color: #ffffff;
  margin: 15px 0 5px;
  font-weight: 600;
}

.mode-btn {
  padding: 16px 34px;
  background: #333;
  border: 2px solid #444;
  border-radius: 10px;
  color: #999;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.mode-btn:hover {
  background: #444;
  border-color: #555;
  color: #fff;
}

/* Free button when active - dark/grey */
.mode-btn.active-free {
  background: #1a1a1a;
  border-color: #4dd4e4;
  color: #fff;
  box-shadow: 0 0 15px rgba(77, 212, 228, 0.3);
}

/* Premium button when active (regular user) - cyan */
.mode-btn.active-premium {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  border-color: #4dd4e4;
  color: #000;
  box-shadow: 0 0 20px rgba(77, 212, 228, 0.5);
}

/* Premium button when active (VIP user) - gold */
.mode-btn.active-vip {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-color: #FFD700;
  color: #000;
  animation: vipGlow 2s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

@keyframes vipGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.vip-badge {
  background: #000;
  color: #FFD700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  animation: vipBadgePulse 1.5s ease-in-out infinite;
}

@keyframes vipBadgePulse {

  0%,
  100% {
    text-shadow: 0 0 5px #FFD700;
  }

  50% {
    text-shadow: 0 0 15px #FFD700, 0 0 25px #FFA500;
  }
}

/* Keep old .active for backwards compatibility but override with new classes */
.mode-btn.active {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  color: #000000;
}

.wallet-box {
  background: #111;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.copy-btn {
  margin-left: 10px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  border: none;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: linear-gradient(135deg, #5de0f0, #3ec9da);
  transform: scale(1.05);
}

.hidden {
  display: none;
}

.premium-box {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   FLOATING IMAGES - Hero Only
   ============================================ */

@keyframes floatGentle {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   BLOCKCHAIN LOGOS ANIMATION
   ============================================ */

/* ============================================
   BLOCKCHAIN LOGOS - REMOVED
   ============================================ */

/* All blockchain logo styles removed - logos not used */

/* ============================================
   WATER CANVAS - Hero Section Only
   ============================================ */

#water {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#water.hidden-on-scroll {
  opacity: 0;
}

/* ============================================
   FLOATING STARS - Hero Only
   ============================================ */

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.floating-star {
  position: absolute;
  color: #ffffff;
  font-size: 20px;
  z-index: 5;
  pointer-events: none;
  animation: starTwinkle 3s ease-in-out infinite;
}

.floating-star:nth-child(odd) {
  animation-duration: 2.5s;
}

.floating-star:nth-child(even) {
  animation-duration: 3.5s;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 80px 14px 22px;
  background: transparent;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9997;
  box-sizing: border-box;
}

.nav-left {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-left: 50px;
}

.nav-right {
  display: flex;
  gap: 10px;
}

.nav-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Back arrow button */
.back-arrow {
  position: fixed;
  top: 70px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4000;
  font-size: 24px;
  color: #000;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}

.back-arrow:hover {
  background: #cccccc;
  transform: scale(1.1);
}

/* ============================================
   AUTH MODALS
   ============================================ */

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.75) !important;
  z-index: 99999999 !important;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.auth-modal.hidden {
  display: none !important;
}

.auth-box {
  width: 100%;
  max-width: 360px;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-btn {
  margin-top: 10px;
  background: #444;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #666;
}

/* ============================================
   DASHBOARD
   ============================================ */

.dashboard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.danger-btn {
  background: #ff4444;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.danger-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fadeInPage {
  animation: fadeInUp 0.8s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   GENERATOR PAGE
   ============================================ */

body.generator-bg {
  background: linear-gradient(135deg, #000000, #0a0a0a);
  min-height: 100vh;
  overflow-y: auto;
}

/* Generator Container */
.generator-container {
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
  z-index: 10;
}

/* Book opening animation */
.panel {
  background: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: bookOpen 0.8s ease-out;
  transform-origin: left center;
}

@keyframes bookOpen {
  0% {
    opacity: 0;
    transform: perspective(1200px) rotateY(-90deg);
  }

  100% {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg);
  }
}

@keyframes bookFlip {
  0% {
    transform: perspective(1200px) rotateY(0deg);
  }

  50% {
    transform: perspective(1200px) rotateY(90deg);
  }

  100% {
    transform: perspective(1200px) rotateY(0deg);
  }
}

/* Mode buttons slide animation */
.mode-btn {
  animation: slideInFromLeft 0.5s ease-out backwards;
}

.mode-btn:nth-child(1) {
  animation-delay: 0.2s;
}

.mode-btn:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form fields slide in */
.panel input,
.panel textarea,
.panel select,
.panel label {
  animation: fadeSlideIn 0.4s ease-out backwards;
}

.panel input:nth-of-type(1) {
  animation-delay: 0.3s;
}

.panel input:nth-of-type(2) {
  animation-delay: 0.35s;
}

.panel textarea:nth-of-type(1) {
  animation-delay: 0.4s;
}

.panel input:nth-of-type(3) {
  animation-delay: 0.45s;
}

.panel input:nth-of-type(4) {
  animation-delay: 0.5s;
}

.panel input:nth-of-type(5) {
  animation-delay: 0.55s;
}

.panel input:nth-of-type(6) {
  animation-delay: 0.6s;
}

.panel input:nth-of-type(7) {
  animation-delay: 0.65s;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.generator-container {
  min-height: 100vh;
  padding: 100px 20px 40px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .blockchain-logo svg {
    width: 40px;
    height: 40px;
  }

  .nav-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .floating-star {
    font-size: 16px;
  }

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

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .timeline {
    padding-left: 30px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.2rem;
  }

  .hamburger {
    top: 15px;
    left: 15px;
  }

  .features-grid,
  .templates-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  section {
    padding: 60px 15px;
  }

  .nav-left {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 18px;
  }

  .nav-left {
    font-size: 18px;
    margin-left: 5px;
  }

  .nav-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .side-menu {
    width: 280px;
    left: -300px;
  }

  .feature-icon {
    font-size: 45px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .price {
    font-size: 36px;
  }

  .blockchain-logo svg {
    width: 35px;
    height: 35px;
  }
}

/* ============================================
   AI CUSTOMER SUPPORT CHATBOT
   ============================================ */

.ai-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.ai-chat-toggle {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(77, 212, 228, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(77, 212, 228, 0.4);
  }

  50% {
    box-shadow: 0 10px 40px rgba(77, 212, 228, 0.7);
  }
}

.ai-chat-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(77, 212, 228, 0.6);
}

.chat-icon {
  font-size: 24px;
}

.ai-chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  height: 550px;
  background: rgba(10, 10, 20, 0.98);
  border: 2px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  animation: slideInUp 0.4s ease-out;
}

.ai-chat-header {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  color: #000;
  padding: 20px;
  border-radius: 18px 18px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-chat-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.ai-chat-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  transition: transform 0.2s;
  padding: 5px 10px;
  line-height: 1;
  z-index: 10001;
  position: relative;
  pointer-events: auto;
  font-weight: bold;
}

.ai-chat-close:hover {
  transform: scale(1.3);
  color: #ff0000;
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 3px;
}

.ai-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: fadeIn 0.3s ease-out;
}

.user-message {
  flex-direction: row-reverse;
}

.ai-avatar {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.user-avatar {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.ai-text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
}

.user-message .ai-text {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.4);
}

.ai-quick-questions {
  padding: 10px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-btn {
  background: rgba(77, 212, 228, 0.15);
  border: 1px solid rgba(77, 212, 228, 0.4);
  color: #4dd4e4;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-btn:hover {
  background: rgba(77, 212, 228, 0.3);
  border-color: #4dd4e4;
  transform: translateY(-2px);
}

.ai-chat-input-container {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 18px 18px;
}

#aiChatInput {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 15px;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

#aiChatInput:focus {
  border-color: #ffffff;
}

#aiChatSend {
  background: linear-gradient(135deg, #4dd4e4, #2eb8c9);
  border: none;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#aiChatSend:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(77, 212, 228, 0.5);
}

.ai-typing {
  display: flex;
  gap: 5px;
  padding: 12px 15px;
}

.ai-typing span {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.ai-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ai-chat-box {
    width: calc(100vw - 40px);
    height: calc(100vh - 140px);
    right: 20px;
    left: 20px;
    bottom: 90px;
  }

  .ai-chat-toggle {
    padding: 12px 20px;
    font-size: 14px;
  }

  .chat-text {
    display: none;
  }
}

/* ============================================
   LOGO ANIMATIONS
   ============================================ */

.nav-logo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  animation: logoFloat 3s ease-in-out infinite;
}

.nav-left {
  display: flex;
  align-items: center;
}

/* Section Subtitles */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -20px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.dark {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* CTA Section Enhancements */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cta-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ffffff, #cccccc);
  border-radius: 50%;
  animation: particleFloat 15s infinite;
  opacity: 0;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.cta-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.cta-particle:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
}

.cta-particle:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
}

.cta-particle:nth-child(4) {
  left: 70%;
  animation-delay: 9s;
}

.cta-particle:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.cta-logo-container {
  text-align: center;
  margin-bottom: 40px;
  animation: logoContainerPulse 3s ease-in-out infinite;
}

@keyframes logoContainerPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.cta-logo {
  width: 250px;
  height: 250px;
  filter: drop-shadow(0 0 80px rgba(255, 255, 255, 1));
  animation: ctaLogoSpin 20s linear infinite;
}

@keyframes ctaLogoSpin {
  0% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 1));
  }

  50% {
    transform: rotate(180deg) scale(1.2);
    filter: drop-shadow(0 0 100px rgba(255, 255, 255, 1));
  }

  100% {
    transform: rotate(360deg) scale(1);
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 1));
  }
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
  animation: statFadeIn 1s ease-out backwards;
}

.cta-stat:nth-child(1) {
  animation-delay: 0.2s;
}

.cta-stat:nth-child(2) {
  animation-delay: 0.4s;
}

.cta-stat:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #cccccc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.cta-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn {
  animation: ctaBtnPulse 2s ease-in-out infinite;
  font-size: 20px;
  padding: 20px 50px;
}

@keyframes ctaBtnPulse {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 10px 60px rgba(255, 255, 255, 0.8);
  }
}

/* Feature Cards Enhancement */
.feature-card {
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

/* How It Works Steps Enhancement */
.step {
  transition: all 0.3s ease;
}

.step:hover {
  transform: scale(1.05);
}

.step:hover .step-number {
  transform: scale(1.2);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-logo {
    width: 180px;
    height: 180px;
  }

  .cta-stat-number {
    font-size: 42px;
  }

  .cta-stats {
    gap: 30px;
  }

  .nav-logo {
    width: 45px;
    height: 45px;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .big-btn {
    padding: 20px 40px;
    font-size: 20px;
  }
}

.loading-dots span {
  animation: blink 1.4s infinite;
  animation-fill-mode: both;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

/* VIP Badge Glow Animation */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 165, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 165, 0, 0.5);
  }
}