/* Template 47 - Retro Neon Arcade */
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap");

:root {
  --neon-pink: #ff006e;
  --neon-blue: #00d9ff;
  --neon-yellow: #ffed4e;
  --neon-green: #39ff14;
  --bg-dark: #0a0a0f;
  --bg-grid: #151520;
  --text-primary: #ffffff;
  --text-glow: #00d9ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "VT323", monospace;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-dark);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 217, 255, 0.03) 2px,
      rgba(0, 217, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 217, 255, 0.03) 2px,
      rgba(0, 217, 255, 0.03) 4px
    );
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 3px solid var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Press Start 2P", cursive;
  font-size: 1.2rem;
  color: var(--neon-yellow);
  text-decoration: none;
  text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  text-shadow: 0 0 20px var(--neon-yellow), 0 0 40px var(--neon-yellow);
  transform: scale(1.1);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px var(--neon-blue);
  border: 2px solid transparent;
  padding: 0.5rem 1rem;
}

.site-nav a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
  border: 2px solid var(--neon-pink);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Press Start 2P", cursive;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--neon-pink);
  text-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink), 0 0 60px var(--neon-pink);
  animation: arcade-flicker 2s infinite;
}

@keyframes arcade-flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
  51% {
    opacity: 1;
  }
}

.section.head p {
  font-size: 1.5rem;
  color: var(--neon-blue);
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 0 0 10px var(--neon-blue);
}

.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Press Start 2P", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green);
}

.section header p {
  font-size: 1.4rem;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
}

.footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 3px solid var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--neon-yellow);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px var(--neon-yellow);
}

.footer-links a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 15px var(--neon-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--neon-blue);
}

.copyright a {
  color: var(--text-glow);
  font-size: 1.1rem;
  text-shadow: 0 0 5px var(--text-glow);
}

@keyframes pixelate-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: pixelate-in 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
