:root {
  /* Primary Colors */
  --neon-crimson: #FF1E56;
  --electric-cyan: #00F5FF;
  --thunder-yellow: #FFD60A;
  
  /* Secondary Colors */
  --pulse-purple: #7B2CBF;
  --steel-grey: #4A4E69;
  --flare-orange: #FF6D00;
  
  /* Background Colors */
  --dark-bg: #0a0a14;
  --darker-bg: #050508;
  --medium-bg: #121225;
  
  /* Text Colors */
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.65);
  
  /* Fonts */
  --font-heading: 'Exo 2', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-action: 'Bangers', cursive;
  
  /* Gradients */
  --neon-gradient: linear-gradient(135deg, var(--neon-crimson), var(--pulse-purple));
  --cyber-gradient: linear-gradient(45deg, var(--electric-cyan), var(--thunder-yellow));
  --dark-gradient: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
  
  /* Shadows and Glows */
  --neon-glow: 0 0 10px rgba(255, 30, 86, 0.7), 0 0 20px rgba(255, 30, 86, 0.5), 0 0 30px rgba(255, 30, 86, 0.3);
  --cyan-glow: 0 0 10px rgba(0, 245, 255, 0.7), 0 0 20px rgba(0, 245, 255, 0.5), 0 0 30px rgba(0, 245, 255, 0.3);
  --yellow-glow: 0 0 10px rgba(255, 214, 10, 0.7), 0 0 20px rgba(255, 214, 10, 0.5), 0 0 30px rgba(255, 214, 10, 0.3);
  
  /* Sizes */
  --header-height: 80px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  color: var(--electric-cyan);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover, a:focus {
  color: var(--thunder-yellow);
  text-shadow: var(--cyan-glow);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--spacing-md);
}

/* Buttons */
.pulse-btn {
  display: inline-block;
  background: var(--neon-gradient);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 30, 86, 0.5);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  text-align: center;
}

.pulse-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-fast);
}

.pulse-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 30, 86, 0.7);
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.pulse-btn:hover:before {
  left: 100%;
  transition: 0.7s;
}

.pulse-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 30, 86, 0.4);
}

/* Utility Classes */
.glow-text {
  text-shadow: var(--neon-glow);
  position: relative;
  display: inline-block;
}

.section {
  padding: var(--spacing-xl) var(--spacing-md);
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--neon-crimson);
  margin: var(--spacing-sm) auto 0;
  box-shadow: var(--neon-glow);
}

/* Views Management */
.view {
  display: none;
}

.view.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: var(--spacing-lg) var(--spacing-md);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  
  .pulse-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes glow {
  0% { text-shadow: 0 0 5px rgba(255, 30, 86, 0.7), 0 0 10px rgba(255, 30, 86, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 30, 86, 0.7), 0 0 30px rgba(255, 30, 86, 0.5); }
  100% { text-shadow: 0 0 5px rgba(255, 30, 86, 0.7), 0 0 10px rgba(255, 30, 86, 0.5); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}