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

:root {
  --gradient-1: linear-gradient(135deg, #8B00FF 0%, #FF00FF 100%);
  --gradient-2: linear-gradient(135deg, #DA00FF 0%, #00FFFF 100%);
  --gradient-3: linear-gradient(135deg, #9D00FF 0%, #00D4FF 100%);
  --gradient-4: linear-gradient(135deg, #B800FF 0%, #00FF88 100%);
  --gradient-5: linear-gradient(135deg, #FF00AA 0%, #00AAFF 100%);

  --bg-primary: #0a0015;
  --bg-secondary: #1a0030;
  --glass-bg: rgba(139, 0, 255, 0.08);
  --glass-border: rgba(139, 0, 255, 0.25);

  --text-primary: #E0E0FF;
  --text-secondary: #B8B8FF;
  --text-muted: #8888CC;
}

* {
  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.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(139, 0, 255, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
  animation: electricPulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes electricPulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(10%, 10%) scale(1.1);
    opacity: 0.8;
  }
}

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

/* Header with electric neon */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--glass-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(139, 0, 255, 0.3);
}

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

.site-logo a {
  font-family: "Audiowide", cursive;
  font-size: 1.9rem;
  font-weight: 400;
  color: #FF00FF;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.4);
  letter-spacing: 2px;
}

.site-logo a:hover {
  color: #00FFFF;
  text-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}

.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: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: #FF00FF;
  border: 1px solid rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  background: rgba(139, 0, 255, 0.1);
}

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

.section.head h1 {
  font-family: "Audiowide", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #FF00FF;
  text-shadow: 0 0 30px rgba(255, 0, 255, 1), 0 0 60px rgba(255, 0, 255, 0.5), 0 0 90px rgba(139, 0, 255, 0.3);
  animation: neonFlicker 4s ease-in-out infinite;
  letter-spacing: 3px;
}

@keyframes neonFlicker {
  0%, 100% {
    text-shadow: 0 0 30px rgba(255, 0, 255, 1), 0 0 60px rgba(255, 0, 255, 0.5), 0 0 90px rgba(139, 0, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 0, 255, 1), 0 0 80px rgba(255, 0, 255, 0.7), 0 0 120px rgba(139, 0, 255, 0.5);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin-left: auto;
}

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

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

.section header h2 {
  font-family: "Audiowide", cursive;
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #00FFFF;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
  letter-spacing: 2px;
}

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

/* Footer */
.footer {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--glass-border);
  margin-top: 5rem;
  box-shadow: 0 -5px 30px rgba(139, 0, 255, 0.2);
}

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

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

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

.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: #FF00FF;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}
