/* Template 22 - Neon Tokyo / Japanese Cyberpunk */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  --gradient-2: linear-gradient(135deg, #fb5607 0%, #ffbe0b 100%);
  --gradient-3: linear-gradient(135deg, #06ffa5 0%, #00d9ff 100%);
  --gradient-4: linear-gradient(135deg, #ff006e 0%, #06ffa5 100%);
  --gradient-5: linear-gradient(135deg, #8338ec 0%, #00d9ff 100%);

  --bg-primary: #0a0a0f;
  --bg-secondary: #1a0f2e;
  --glass-bg: rgba(255, 0, 110, 0.08);
  --glass-border: rgba(255, 0, 110, 0.3);

  --text-primary: #00ffff;
  --text-secondary: #ff006e;
  --text-muted: #a855f7;
}

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

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

body {
  font-family: "Rajdhani", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 0, 110, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 0, 110, 0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 3px
    );
  animation: scanlines 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

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

/* Header with Neon Glow */
.site-header {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 2px solid var(--text-secondary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
}

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

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  text-shadow: 0 0 20px #ff006e, 0 0 40px #ff006e, 0 0 60px #ff006e;
  color: var(--text-secondary);
}

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

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.6), inset 0 0 15px rgba(255, 0, 110, 0.2);
  transform: skewX(-5deg);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff, 0 0 80px #ff006e;
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff, 0 0 80px #ff006e;
  }
  100% {
    text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #ff006e;
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 0 0 15px #ff006e, 0 0 30px #ff006e;
}

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

/* Footer */
.footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 2px solid var(--text-secondary);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
}

.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-weight: 500;
}

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

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
  text-shadow: 0 0 15px #ff006e;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 0, 110, 0.3);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 0 0 10px #00ffff;
}
