/* Template 38 - Electric Lime / High Energy Tech */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;800&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
  --gradient-2: linear-gradient(135deg, #a8ff78 0%, #78ffd6 100%);
  --gradient-3: linear-gradient(135deg, #96fbc4 0%, #f9f586 100%);
  --gradient-4: linear-gradient(135deg, #00f260 0%, #0575e6 100%);
  --gradient-5: linear-gradient(135deg, #52c234 0%, #061700 100%);

  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --glass-bg: rgba(168, 255, 120, 0.08);
  --glass-border: rgba(168, 255, 120, 0.2);

  --text-primary: #e6edf3;
  --text-secondary: #a8ff78;
  --text-muted: #7d8590;
}

* {
  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: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(168, 255, 120, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(120, 255, 214, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(249, 245, 134, 0.05) 0%, transparent 50%);
  animation: electricPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes electricPulse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-20px, 20px) scale(1.1); opacity: 0.5; }
}

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

/* Header with Electric Style */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--text-secondary);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(168, 255, 120, 0.3);
}

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

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(168, 255, 120, 0.8);
}

.site-logo a:hover {
  text-shadow: 0 0 40px rgba(168, 255, 120, 1), 0 0 60px rgba(168, 255, 120, 0.8);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1.2rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--text-secondary);
  border-color: var(--text-secondary);
  box-shadow: 0 0 15px rgba(168, 255, 120, 0.5);
}

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

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 30px rgba(168, 255, 120, 0.7);
  animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 100% { 
    text-shadow: 0 0 30px rgba(168, 255, 120, 0.7), 0 0 60px rgba(168, 255, 120, 0.4); 
  }
  50% { 
    text-shadow: 0 0 50px rgba(168, 255, 120, 1), 0 0 80px rgba(168, 255, 120, 0.6); 
  }
}

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

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

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

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(168, 255, 120, 0.5);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--text-secondary);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 0 30px rgba(168, 255, 120, 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-primary);
  line-height: 1.8;
}

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

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

.footer-links a:hover {
  color: var(--text-secondary);
  text-shadow: 0 0 15px rgba(168, 255, 120, 0.7);
}

.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.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: 1.7rem;
  color: var(--text-secondary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
