.loader-overlay { transition: opacity 0.5s ease; }
.loader-overlay.hidden { opacity: 0; pointer-events: none; }
.loader-bg { background: #050505; }
.loader-segment { width: 5%; height: 100%; border-right: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.loader-particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(59, 133, 38, 0.6);
  box-shadow: 0 0 8px rgba(59, 133, 38, 0.4);
  pointer-events: none;
  animation: particleRise linear infinite;
}
.loader-particle.particle-sm { width: 3px; height: 3px; }
.loader-particle.particle-md { width: 5px; height: 5px; }
.loader-particle.particle-lg { width: 7px; height: 7px; }
@keyframes particleRise {
  0% { transform: translateY(0); opacity: 0; }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { transform: translateY(-100vh); opacity: 0; }
}
.font-minecraft-loader {
  font-family: 'Press Start 2P', 'Courier New', monospace !important;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: #6b6b6b;
  -webkit-font-smoothing: none;
  font-smooth: never;
}

.font-minecraft, .minecraft_1776b7e-module__8gvL1q__variable {
  font-family: 'Press Start 2P', 'Courier New', monospace !important;
}
.font-sans, .poppins_c2999306-module__eS-Bzq__variable {
  font-family: 'Poppins', system-ui, sans-serif !important;
}

html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }

body {
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(59, 133, 38, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(59, 133, 38, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(34, 100, 50, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #070b0f 0%, #0a1015 15%, #0d1619 35%, #0a1412 55%, #0d1619 75%, #080c10 100%) !important;
  background-attachment: fixed;
}

.bg-background { background-color: #0f1419 !important; }
.bg-background\/70 { background-color: rgba(15, 20, 25, 0.7) !important; }

@media (max-width: 767px) {
  #main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0f1419;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 40;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  }
  #main-nav:not(.mobile-open) { display: none !important; }
  #main-nav.mobile-open { display: flex !important; }
}

.wave-fill,
.wave-fill path {
  fill: url(#waveGradient);
}

.wave-animated {
  animation: waveFlow 6s ease-in-out infinite;
  transform-origin: center bottom;
}
.wave-animated svg {
  animation: wavePulse 4s ease-in-out infinite;
  transform-origin: center center;
}
section:nth-of-type(1) .wave-animated { animation-delay: 0s; }
section:nth-of-type(2) .wave-animated { animation-delay: -1.2s; }
section:nth-of-type(3) .wave-animated { animation-delay: -2.5s; }
section:nth-of-type(4) .wave-animated { animation-delay: -0.5s; }
section:nth-of-type(5) .wave-animated { animation-delay: -1.8s; }
section:nth-of-type(6) .wave-animated { animation-delay: -3s; }
section:nth-of-type(7) .wave-animated { animation-delay: -0.8s; }
section:nth-of-type(8) .wave-animated { animation-delay: -2.2s; }
@keyframes waveFlow {
  0%, 100% { transform: translateX(0) scaleX(1) rotate(0deg); }
  20% { transform: translateX(-4%) scaleX(1.06) rotate(-0.3deg); }
  40% { transform: translateX(3%) scaleX(0.94) rotate(0.2deg); }
  60% { transform: translateX(5%) scaleX(1.04) rotate(0.4deg); }
  80% { transform: translateX(-3%) scaleX(0.96) rotate(-0.2deg); }
}
@keyframes wavePulse {
  0%, 100% { opacity: 1; transform: scaleY(1) scaleX(1); }
  33% { opacity: 0.88; transform: scaleY(1.12) scaleX(1.03); }
  66% { opacity: 0.95; transform: scaleY(0.98) scaleX(0.97); }
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
