:root {
  --raichu-orange: #f2a221;
  --raichu-orange-dark: #d48810;
  --raichu-yellow: #ffe05d;
  --raichu-brown: #6c422c;
  --lightning-blue: #4cc9f0;
  --bg-dark: #121212;
  --text-light: #f0f0f0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Luckiest Guy", cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: brightness(0.6) contrast(1.2);
}

.hero-content h1 {
  font-size: 8rem;
  color: var(--raichu-yellow);
  text-shadow:
    0 0 20px rgba(242, 162, 33, 0.8),
    0 0 40px rgba(255, 224, 93, 0.4);
  margin-bottom: 0.5rem;
  animation: glowTitle 3s infinite alternate;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--raichu-orange);
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 400px;
}

.ca-wrapper {
  width: 100%;
}

.ca-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 224, 93, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ca-container:hover {
  background: rgba(255, 224, 93, 0.1);
  border-color: var(--raichu-yellow);
  transform: scale(1.02);
}

.ca-label {
  color: var(--raichu-yellow);
  font-weight: 800;
  font-size: 0.9rem;
}

.ca-value {
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.copy-icon {
  color: var(--raichu-orange);
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--raichu-yellow);
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 224, 93, 0.4);
}

.social-btn:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 224, 93, 0.6);
}

.social-btn svg {
  width: 24px;
  height: 24px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  color: var(--raichu-yellow);
}

.bolt {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

/* Sections */
.section {
  padding: 8rem 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid.reverse {
  direction: rtl;
}

.grid.reverse .text-content {
  direction: ltr;
}

h2 {
  font-size: 3.5rem;
  color: var(--raichu-orange);
  margin-bottom: 1.5rem;
}

.center {
  text-align: center;
}

/* Cards */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-card h3 {
  color: var(--raichu-yellow);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Images */
.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* Removed drop-shadow to handle filter better in animation if needed */
}

/* Animations */
.floating {
  animation: floating 4s ease-in-out infinite;
}

.large-float {
  animation: floating 6s ease-in-out infinite;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

@keyframes glowTitle {
  from {
    text-shadow: 0 0 20px rgba(242, 162, 33, 0.8);
  }
  to {
    text-shadow:
      0 0 50px rgba(255, 224, 93, 1),
      0 0 80px rgba(76, 201, 240, 0.6);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Lightning Overlay */
.lightning-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background: white;
  opacity: 0;
}

.flash {
  animation: flashEffect 0.2s ease-out;
}

@keyframes flashEffect {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
}


.music-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 224, 93, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: var(--raichu-yellow);
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.music-btn:hover {
  background: rgba(255, 224, 93, 0.1);
  transform: scale(1.1);
}

.music-btn.playing .music-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--raichu-yellow);
  animation: pulseRotate 2s linear infinite;
}

@keyframes pulseRotate {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .grid.reverse {
    direction: ltr;
  }
}
