/* Template 53 - Electric Neon Sports */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Barlow:wght@400;500;600;700;800&display=swap");

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #14141f;
  --neon-green: #39ff14;
  --neon-yellow: #ffff00;
  --neon-pink: #ff10f0;
  --neon-blue: #00f0ff;
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-muted: #707080;
}

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

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

body {
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 49%, var(--neon-green) 49%, var(--neon-green) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, var(--neon-green) 49%, var(--neon-green) 51%, transparent 51%);
  background-size: 100px 100px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.02; }
  50% { opacity: 0.05; }
}

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

.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--neon-green);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

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

.site-logo a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 
    0 0 10px var(--neon-green),
    0 0 20px var(--neon-green),
    0 0 30px var(--neon-green);
  position: relative;
}

.site-logo a:hover {
  color: var(--neon-yellow);
  text-shadow: 
    0 0 10px var(--neon-yellow),
    0 0 20px var(--neon-yellow),
    0 0 40px var(--neon-yellow);
  transform: scale(1.05);
}

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

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

.site-nav a:hover {
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  box-shadow: 
    0 0 10px var(--neon-green),
    inset 0 0 10px rgba(57, 255, 20, 0.2);
}

.section.head {
  padding: 8rem 0;
  text-align: right;
  position: relative;
  border-bottom: 3px solid var(--neon-green);
}

.section.head h1 {
  font-family: "Teko", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 
    0 0 20px var(--neon-green),
    0 0 40px var(--neon-green),
    0 0 60px var(--neon-green);
  animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
  52% { opacity: 1; }
  54% { opacity: 0.95; }
  56% { opacity: 1; }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Teko", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neon-yellow);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 
    0 0 20px var(--neon-yellow),
    0 0 40px var(--neon-yellow);
}

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

.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--neon-green);
  margin-top: 5rem;
  box-shadow: 0 0 20px rgba(57, 255, 20, 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;
  font-weight: 500;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(57, 255, 20, 0.3);
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s 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: 2rem;
  color: var(--neon-green);
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px var(--neon-green);
}
