@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');
@import 'variables.css';

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Mobile-Only Navigation */
#mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
}

.mobile-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.mobile-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  text-shadow: var(--glow-primary);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-nav-links {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-secondary);
  transition: max-height 0.3s ease;
}

.mobile-nav-links.active {
  max-height: 200px;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
  background: rgba(145, 70, 255, 0.1);
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

/* Combined Hero + Links Section */
.hero-links-section {
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 245, 255, 1);
}

.hero-links-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

.hero-links-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-compact {
  margin-bottom: 2rem;
}

.hero-content-compact h1 {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), rgba(0, 245, 255, 1), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow-primary), 0 0 30px rgba(0, 245, 255, 0.4), 0 0 40px rgba(0, 245, 255, 0.2);
  filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.4));
}

.hero-content-compact p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.link-tree {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#twitch-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

#other-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.link-item:hover::before {
  left: 100%;
}

.link-item.primary {
  border-color: var(--primary-color);
  box-shadow: var(--glow-primary);
}

.link-item.twitch-streamer {
  border-color: var(--twitch);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.3);
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(145, 70, 255, 0.05));
}

.link-item.twitch-streamer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
  border-color: var(--primary-light);
}

.links-divider {
  text-align: center;
  position: relative;
  padding: 1rem 0;
}

.links-divider span {
  /* background: var(--bg-primary); */
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 200;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  box-shadow: 
    0 0 5px var(--primary-color),
    0 0 10px rgba(182, 255, 59, 0.3),
    inset 0 1px 0 rgba(182, 255, 59, 0.2);
  transition: var(--transition);
}

.links-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 10%, 
    var(--secondary-color) 30%, 
    var(--primary-color) 90%, 
    transparent 100%);
  box-shadow: 
    0 0 5px var(--primary-color),
    0 0 10px rgba(182, 255, 59, 0.5);
  opacity: 0.8;
  animation: divider-pulse 3s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% { 
    opacity: 0.8;
    filter: brightness(1);
  }
  50% { 
    opacity: 1;
    filter: brightness(1.3);
  }
}

/* Animated Header Divider */
.animated-header {
  position: relative;
  height: 150px;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(90deg, 
    var(--black-void) 0%, 
    rgba(182, 255, 59, 0.08) 10%,
    var(--black-soft) 20%,
    rgba(0, 255, 255, 0.06) 30%,
    var(--black-deep) 40%,
    rgba(182, 255, 59, 0.05) 50%,
    var(--black-rich) 60%,
    rgba(0, 255, 255, 0.08) 70%,
    var(--black-carbon) 80%,
    rgba(182, 255, 59, 0.06) 90%,
    var(--black-pure) 100%);
  border-bottom: 2px solid rgba(182, 255, 59, 0.4);
}

/* Gaming Animation Divider */
.gaming-animation-divider {
  position: relative;
  height: 150px;
  margin: 3rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(145, 70, 255, 0.05) 0%, 
    rgba(0, 245, 255, 0.05) 50%, 
    rgba(145, 70, 255, 0.05) 100%);
}

.animated-header .floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.animated-header .gaming-icon-float {
  position: absolute;
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0.7;
  animation: float-compact var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.gaming-icon-float {
  position: absolute;
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: float var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.gaming-icon-float:nth-child(1) { left: 10%; }
.gaming-icon-float:nth-child(2) { left: 20%; }
.gaming-icon-float:nth-child(3) { left: 35%; }
.gaming-icon-float:nth-child(4) { left: 50%; }
.gaming-icon-float:nth-child(5) { left: 65%; }
.gaming-icon-float:nth-child(6) { left: 75%; }
.gaming-icon-float:nth-child(7) { left: 85%; }
.gaming-icon-float:nth-child(8) { left: 95%; }
.gaming-icon-float:nth-child(9) { left: 5%; }

.animated-header .gaming-icon-float.gaming-icon-special {
  color: var(--accent-charcoal);
  text-shadow: 0 0 10px var(--black-shadow), 0 0 15px rgba(54, 69, 79, 0.8);
}

.animated-header .gaming-icon-float:nth-child(5n) {
  color: var(--accent-obsidian);
  text-shadow: 0 0 12px var(--black-overlay), 0 0 18px rgba(15, 15, 35, 0.9);
}

.animated-header .gaming-icon-float:nth-child(odd) {
  color: var(--accent-lime);
}

.animated-header .gaming-icon-float:nth-child(even) {
  color: var(--accent-pink);
}

.animated-header .gaming-icon-float:nth-child(3n) {
  color: var(--accent-jet);
  text-shadow: 0 0 8px var(--black-shadow), 0 0 12px rgba(52, 52, 52, 0.7);
}

.animated-header .gaming-icon-float:nth-child(4n) {
  color: var(--secondary-color);
}

.animated-header .gaming-icon-float:nth-child(7n) {
  color: var(--accent-raven);
  text-shadow: 0 0 6px var(--black-overlay), 0 0 10px rgba(28, 28, 28, 0.8);
}

.gaming-icon-float:nth-child(odd) {
  color: var(--secondary-color);
}

@keyframes float-compact {
  0% {
    transform: translateY(120px) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(30px) rotate(180deg);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

.animated-header .wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  overflow: hidden;
  border-bottom: 3px solid black;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.animated-header .wave {
  position: absolute;
  bottom: 0;
  width: 300%;
  height: 30px;
  animation: wave-movement 8s linear infinite;
}

.animated-header .wave-2 {
  animation: wave-movement 12s linear infinite reverse;
  opacity: 0.6;
}

.wave {
  position: absolute;
  bottom: 0;
  width: 300%;
  height: 60px;
  animation: wave-movement 10s linear infinite;
}

.wave-2 {
  animation: wave-movement 15s linear infinite reverse;
  opacity: 0.5;
}

.animated-header .wave-path {
  fill: rgba(182, 255, 59, 0.25);
  stroke: none;
}

.animated-header .wave-2 .wave-path {
  fill: rgba(0, 255, 255, 0.2);
}

.wave-path {
  fill: rgba(145, 70, 255, 0.1);
  stroke: none;
}

.wave-2 .wave-path {
  fill: rgba(0, 245, 255, 0.08);
}

@keyframes wave-movement {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2400px);
  }
}

.link-item.secondary {
  border-color: var(--secondary-color);
  box-shadow: var(--glow-secondary);
}

.link-item.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
  border-color: var(--secondary-light);
}

.link-item.tertiary {
  border-color: var(--text-muted);
}

.link-item.tertiary:hover {
  transform: translateY(-2px);
  border-color: var(--text-secondary);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.link-icon.twitch {
  background: var(--twitch);
  color: white;
}

.link-icon.youtube {
  background: var(--youtube);
  color: white;
}

.link-icon.twitter {
  background: var(--twitter);
  color: white;
}

.link-icon.discord {
  background: var(--discord);
  color: white;
}

.link-icon.instagram {
  background: var(--instagram);
  color: white;
}

.link-icon.tiktok {
  background: var(--tiktok);
  color: white;
}

.link-icon.other {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.link-content {
  flex: 1;
  text-align: left;
}

.link-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  margin: 0 0 0.2rem 0;
  color: var(--text-primary);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.link-content p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.link-arrow {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
  margin-left: 0.8rem;
  opacity: 0.7;
}

.link-item:hover .link-arrow {
  color: var(--text-primary);
  transform: translateX(3px);
  opacity: 1;
}

/* About Streamers Section */
.about {
  padding: 2rem 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 245, 255, 1);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 20%, 
    var(--secondary-color) 50%, 
    var(--primary-color) 80%, 
    transparent 100%);
  box-shadow: 
    0 0 10px var(--primary-color),
    0 0 20px var(--primary-color),
    0 0 30px rgba(182, 255, 59, 0.5);
  z-index: 1;
  animation: scanning-line-vertical 10s ease-in-out infinite;
}

@keyframes scanning-line-vertical {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.streamers-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.streamer-profile {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 245, 255, 1);
}

.streamer-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.streamer-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.streamer-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-navy);
  border: 3px solid var(--primary-color);
  box-shadow: var(--glow-primary);
}

.streamer-profile h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  text-shadow: 0 0 7px rgba(0, 245, 255, 0.2), var(--glow-primary);
}

.streamer-specialty {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.streamer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.streaming-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(145, 70, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-light);
  border: 1px solid rgba(145, 70, 255, 0.3);
}

.streaming-schedule i {
  font-size: 0.8rem;
}



/* Contact Form Section */
.contact-form-section {
  padding: 2em 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 245, 255, 1);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--bg-tertiary);
  border: 2px solid rgba(145, 70, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--glow-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-light));
  color: var(--accent-navy);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-primary), var(--glow-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 1, 140, 0.6);
}

/* Add section title class back */
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.3));
}

/* Footer */
footer {
  background: var(--bg-primary);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(145, 70, 255, 0.2);
}

footer p {
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  #mobile-navbar {
    display: block;
  }
  
  .hero-links-section {
    padding: 6rem 1rem 2rem;
  }
  
  .hero-content-compact h1 {
    font-size: 2.2rem;
  }
  
  .hero-content-compact p {
    font-size: 0.95rem;
  }
  
  .animated-header {
    height: 80px;
  }
  
  .animated-header .wave-container {
    height: 20px;
  }
  
  .animated-header .wave {
    height: 20px;
  }
  
  .animated-header .gaming-icon-float {
    font-size: 1rem;
    opacity: 0.5;
  }
  
  .gaming-animation-divider {
    height: 100px;
    margin: 2rem 0;
  }
  
  .gaming-icon-float {
    font-size: 1.2rem;
  }
  
  #twitch-links {
    grid-template-columns: 1fr;
  }
  
  #other-links {
    grid-template-columns: 1fr;
  }
  
  .streamers-about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .link-item {
    padding: 0.6rem 0.8rem;
  }
  
  .link-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .link-content h3 {
    font-size: 0.9rem;
  }
  
  .link-content p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-links-section {
    padding: 1rem 1rem 1.5rem;
  }
  
  .hero-content-compact h1 {
    font-size: 1.8rem;
  }
  
  .hero-content-compact p {
    font-size: 0.9rem;
  }
  
  .link-item {
    padding: 0.5rem 0.7rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-form-section,
  .about {
    padding: 3rem 1rem;
  }
}

/* Sparkle Effect System */
.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle.cyber-sparkle {
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  box-shadow: 0 0 6px var(--secondary-color);
}

.sparkle.fade-out {
  animation: sparkle-fade-out 0.8s ease-out forwards;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes sparkle-fade-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

/* Sparkle intensity levels */
.sparkle.level-1 {
  animation-duration: 3s;
  width: 3px;
  height: 3px;
}

.sparkle.level-2 {
  animation-duration: 2.5s;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 4px currentColor;
}

.sparkle.level-3 {
  animation-duration: 2s;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px currentColor;
}

.sparkle.level-4 {
  animation-duration: 1.8s;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px currentColor;
}

.sparkle.level-5 {
  animation-duration: 1.5s;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
}

.sparkle.level-6 {
  animation-duration: 1.2s;
  width: 12px;
  height: 12px;
  box-shadow: 
    0 0 15px currentColor, 
    0 0 30px currentColor,
    0 0 45px rgba(182, 255, 59, 0.5);
}

/* Sparkle Effect System */
.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle.cyber-sparkle {
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  box-shadow: 0 0 6px var(--secondary-color);
}

.sparkle.fade-out {
  animation: sparkle-fade-out 0.8s ease-out forwards;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes sparkle-fade-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

/* Sparkle intensity levels */
.sparkle.level-1 {
  animation-duration: 3s;
  width: 3px;
  height: 3px;
}

.sparkle.level-2 {
  animation-duration: 2.5s;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 4px currentColor;
}

.sparkle.level-3 {
  animation-duration: 2s;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px currentColor;
}