/* Template 10 - Dark Cyberpunk */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Audiowide&display=swap");

:root {
  --cyber-cyan: #00ffff;
  --cyber-magenta: #ff00ff;
  --cyber-yellow: #ffff00;
  --cyber-red: #ff0055;
  --cyber-blue: #0099ff;

  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-accent: #0a0a0a;

  --text-primary: #00ffff;
  --text-secondary: #ffffff;
  --text-muted: #888888;
}

* {
  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-secondary);
  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(0, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 0, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 0, 255, 0.03) 3px
    );
  pointer-events: none;
  z-index: -1;
  animation: scanlines 8s linear infinite;
}

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

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

/* Header - Angular Cyberpunk */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--cyber-cyan);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 5px 0 var(--cyber-magenta);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 20px) 100%, 0 100%);
}

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

.site-logo a {
  font-family: "Audiowide", cursive;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cyber-cyan);
  text-decoration: none;
  text-shadow: 0 0 10px var(--cyber-cyan), 0 0 20px var(--cyber-cyan);
  transition: all 0.3s ease;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: var(--cyber-magenta);
  text-shadow: 0 0 10px var(--cyber-magenta), 0 0 20px var(--cyber-magenta);
  animation: glitch 0.3s ease;
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -2px);
  }
  75% {
    transform: translate(-2px, -2px);
  }
}

.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: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background: transparent;
}

.site-nav a:hover {
  color: var(--cyber-cyan);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  text-shadow: 0 0 10px var(--cyber-cyan);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section.head h1 {
  font-family: "Audiowide", cursive;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--cyber-cyan);
  text-shadow: 0 0 20px var(--cyber-cyan), 0 0 40px var(--cyber-cyan), 0 0 60px var(--cyber-magenta);
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: cyberPulse 2s ease-in-out infinite;
}

@keyframes cyberPulse {
  0%,
  100% {
    text-shadow: 0 0 20px var(--cyber-cyan), 0 0 40px var(--cyber-cyan), 0 0 60px var(--cyber-magenta);
  }
  50% {
    text-shadow: 0 0 30px var(--cyber-cyan), 0 0 60px var(--cyber-cyan), 0 0 90px var(--cyber-magenta);
  }
}

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

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

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

.section header h2 {
  font-family: "Audiowide", cursive;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--cyber-magenta);
  text-shadow: 0 0 15px var(--cyber-magenta), 0 0 30px var(--cyber-magenta);
  text-transform: uppercase;
  letter-spacing: 4px;
}

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

/* Footer */
.footer {
  background: var(--bg-accent);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--cyber-magenta);
  margin-top: 5rem;
  box-shadow: 0 -5px 0 var(--cyber-cyan), 0 0 30px rgba(255, 0, 255, 0.3);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.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-muted);
  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: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--cyber-cyan);
  text-shadow: 0 0 10px var(--cyber-cyan);
}

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

.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(--cyber-cyan);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 0 0 10px var(--cyber-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
}
