/* Template 10 - Neon Cyberpunk / Futuristic */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600;700;800&display=swap");

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

  --bg-primary: #0a0a0f;
  --bg-secondary: #15151f;
  --glass-bg: rgba(255, 0, 110, 0.05);
  --glass-border: rgba(255, 0, 110, 0.3);

  --text-primary: #f0f0ff;
  --text-secondary: #b8b8ff;
  --text-muted: #7070aa;
}

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

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

body {
  font-family: "Exo 2", sans-serif;
  line-height: 1.65;
  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: 
    linear-gradient(90deg, transparent 0%, rgba(255, 0, 110, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(58, 134, 255, 0.05) 2px, rgba(58, 134, 255, 0.05) 4px);
  animation: scanlines 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

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

/* Header - Cyberpunk */
.site-header {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(21, 21, 31, 0.9) 100%);
  border-bottom: 2px solid #ff006e;
  border-top: 2px solid #3a86ff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.3), 0 0 60px rgba(58, 134, 255, 0.2);
}

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

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff006e;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.8), 0 0 20px rgba(255, 0, 110, 0.5);
  position: relative;
}

.site-logo a::before {
  content: "▸";
  position: absolute;
  left: -30px;
  color: #3a86ff;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.site-logo a:hover {
  color: #3a86ff;
  text-shadow: 0 0 15px rgba(58, 134, 255, 0.8), 0 0 30px rgba(58, 134, 255, 0.5);
}

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

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

.site-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ff006e;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-nav a:hover {
  color: #ff006e;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}

.site-nav a:hover::before {
  transform: scaleX(1);
}

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

.section.head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #f0f0ff;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 0, 110, 0.8), 0 0 40px rgba(58, 134, 255, 0.5);
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

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

.section header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}

.section header::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ff006e 50%, transparent 100%);
}

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #3a86ff;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 0 0 15px rgba(58, 134, 255, 0.6);
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Footer - Dark Future */
.footer {
  background: linear-gradient(180deg, #15151f 0%, #0a0a0f 100%);
  padding: 3.5rem 0 1.5rem;
  border-top: 2px solid #ff006e;
  border-bottom: 2px solid #3a86ff;
  margin-top: 5rem;
  box-shadow: 0 -5px 30px rgba(255, 0, 110, 0.2);
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

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

.footer-links a:hover {
  color: #ff006e;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}

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

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

/* Animations */
@keyframes glitchIn {
  0% {
    opacity: 0;
    transform: translateX(-50px) skewX(-10deg);
  }
  20% {
    transform: translateX(10px) skewX(5deg);
  }
  40% {
    transform: translateX(-5px) skewX(-2deg);
  }
  60% {
    transform: translateX(2px) skewX(1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

.fade-in {
  opacity: 0;
  animation: glitchIn 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.8rem;
  color: #3a86ff;
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(58, 134, 255, 0.4);
}
