/* Template 64 - Electric Violet */
@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Electrolize&display=swap");

:root {
  --bg-primary: #0a0014;
  --bg-secondary: #150028;
  --accent-violet: #8b5cf6;
  --accent-cyan: #06d6ff;
  --accent-pink: #ff00ff;
  --text-primary: #e0e0ff;
  --text-secondary: #b8b8ff;
  --text-muted: #8080cc;
  --border-color: rgba(139, 92, 246, 0.3);
}

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

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

body {
  font-family: "Electrolize", sans-serif;
  line-height: 1.7;
  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(
      45deg,
      transparent 30%,
      rgba(139, 92, 246, 0.03) 30%,
      rgba(139, 92, 246, 0.03) 70%,
      transparent 70%
    ),
    linear-gradient(-45deg, transparent 30%, rgba(6, 214, 255, 0.03) 30%, rgba(6, 214, 255, 0.03) 70%, transparent 70%);
  background-size: 60px 60px;
  animation: electricGrid 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes electricGrid {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, -60px -60px;
  }
}

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

/* Header - Futuristic Electric */
.site-header {
  background: linear-gradient(90deg, rgba(10, 0, 20, 0.9) 0%, rgba(21, 0, 40, 0.9) 100%);
  border-bottom: 2px solid var(--accent-violet);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

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

.site-logo a {
  font-family: "Syncopate", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-violet);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
}

.site-logo a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 25px rgba(6, 214, 255, 0.9);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent-violet);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(6, 214, 255, 0.6);
}

.site-nav a:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Hero Section */
.section.head {
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.section.head h1 {
  font-family: "Syncopate", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--accent-violet) 0%, var(--accent-cyan) 50%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: electricPulse 3s ease-in-out infinite;
}

@keyframes electricPulse {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

.section header h2 {
  font-family: "Syncopate", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-violet);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 1.5rem;
  border-top: 2px solid var(--accent-violet);
  margin-top: 6rem;
  box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.2);
}

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

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

.footer-links a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(6, 214, 255, 0.7);
}

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

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

/* Animations */
@keyframes electricFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: electricFadeIn 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.75rem;
  color: var(--accent-violet);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Syncopate", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}
