/* Template 64 - Electric Violet Synthwave */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Exo+2:wght@400;600;700;900&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #b026ff 0%, #8a00e6 100%);
  --gradient-2: linear-gradient(135deg, #ff006e 0%, #d6006e 100%);
  --gradient-3: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
  --gradient-4: linear-gradient(135deg, #ffd60a 0%, #ffb703 100%);
  --gradient-5: linear-gradient(135deg, #ff006e 0%, #b026ff 100%);

  --bg-primary: #0a0015;
  --bg-secondary: #150028;
  --glass-bg: rgba(176, 38, 255, 0.1);
  --glass-border: rgba(176, 38, 255, 0.3);

  --text-primary: #ffffff;
  --text-secondary: #e0b0ff;
  --text-muted: #b088d9;
}

* {
  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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, transparent 50%, rgba(176, 38, 255, 0.03) 50%),
    repeating-linear-gradient(0deg, rgba(176, 38, 255, 0.1) 0px, transparent 2px, transparent 4px, rgba(176, 38, 255, 0.1) 4px);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: -1;
  animation: scanlines 8s linear infinite;
}

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

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

/* Header */
.site-header {
  background: rgba(10, 0, 21, 0.95);
  border-bottom: 2px solid #b026ff;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
}

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

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

.site-logo a:hover {
  color: #ff006e;
  text-shadow: 0 0 30px rgba(255, 0, 110, 1);
  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: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.7rem 1.5rem;
  border: 2px solid transparent;
  position: relative;
}

.site-nav a:hover {
  color: #00ffff;
  border: 2px solid #b026ff;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

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

.section.head h1 {
  font-family: "Audiowide", cursive;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ff006e;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 80px rgba(176, 38, 255, 0.5);
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 80px rgba(176, 38, 255, 0.5);
  }
  to {
    text-shadow: 0 0 60px rgba(255, 0, 110, 1), 0 0 100px rgba(176, 38, 255, 0.8);
  }
}

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

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

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

.section header h2 {
  font-family: "Audiowide", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 2px solid #b026ff;
  margin-top: 5rem;
  box-shadow: 0 -10px 40px rgba(176, 38, 255, 0.3);
}

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

.footer-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
  transform: scale(1.1);
}

.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: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.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.8rem;
  color: #ff006e;
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}
