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

:root {
  --primary-color: #00ff00;
  --secondary-color: #00cc00;
  --dark-bg: #0a0f0a;
  --darker-bg: #050705;
  --text-color: #ffffff;
  --text-secondary: #aaaaaa;
  --accent-color: #00ff88;
  --candle-color: #003300;
  --money-green: #00ff00;
  --cash-green: #228b22;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

.candle-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 0, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
}

.chaos-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.floating-text {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  animation: float-around 20s infinite ease-in-out;
}

.crime-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--money-green);
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
  opacity: 0.3;
  letter-spacing: 3px;
}

@keyframes float-around {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-20px) scale(1.1);
  }
  50% {
    transform: translateY(10px) scale(0.9);
  }
  75% {
    transform: translateY(-10px) scale(1.05);
  }
}

.main-title {
  font-size: 6rem !important;
  margin-bottom: 0 !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 5% 0;
  position: relative;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" fill="rgba(0,255,0,0.03)">💰</text></svg>'),
    linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.glitch {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: var(--text-color);
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: var(--primary-color);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: var(--secondary-color);
  z-index: -2;
}

@keyframes glitch-1 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(20% 0 30% 0);
    transform: translate(-2px, 2px);
  }
  40% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(2px, -2px);
  }
  60% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(-2px, 0);
  }
  80% {
    clip-path: inset(70% 0 10% 0);
    transform: translate(2px, 1px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(60% 0 10% 0);
    transform: translate(2px, -1px);
  }
  40% {
    clip-path: inset(20% 0 50% 0);
    transform: translate(-2px, 1px);
  }
  60% {
    clip-path: inset(40% 0 30% 0);
    transform: translate(1px, -2px);
  }
  80% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(-1px, 2px);
  }
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin: 1rem 0 3rem;
  font-style: italic;
}

.crime-stats-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  justify-content: center;
}

.stat-chaos {
  background: rgba(0, 255, 0, 0.1);
  border: 3px solid var(--money-green);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
  animation: pulse-chaos 2s infinite;
}

@keyframes pulse-chaos {
  0%,
  100% {
    transform: scale(1) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: scale(1.05) rotate(calc(var(--rotation, 0deg) + 2deg));
  }
}

.stat-label-crazy {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.stat-value-crazy {
  display: block;
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--money-green);
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.loading {
  opacity: 0.5;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.cta-buttons-chaos {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-chaos {
  position: relative;
  padding: 1.5rem 3rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transform: skew(-5deg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-chaos::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: left 0.5s;
}

.btn-chaos:hover::before {
  left: 100%;
}

.btn-chaos:hover {
  transform: skew(-5deg) scale(1.1);
}

.btn-ape {
  background: linear-gradient(135deg, #00ff00, #00ff88);
  border: 3px solid var(--money-green);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

.btn-chart {
  background: rgba(0, 255, 0, 0.1);
  border: 3px solid var(--money-green);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-text-main {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--dark-bg);
  letter-spacing: 2px;
  transform: skew(5deg);
}

.btn-chart .btn-text-main {
  color: var(--money-green);
}

.btn-text-sub {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  transform: skew(5deg);
}

.warning-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--money-green);
  margin-top: 2rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-chart {
  flex: 1;
  position: relative;
  max-width: 600px;
  height: 500px;
  margin-left: 3rem;
  background: rgba(0, 255, 0, 0.02);
  border: 2px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}

.hero-chart .explosive-candle {
  width: 12px;
  animation: explodeUpHero 4s ease-out infinite;
}

@keyframes explodeUpHero {
  0% {
    height: 100px;
    bottom: 0;
    opacity: 0.5;
  }
  30% {
    height: 400px;
    bottom: 0;
    opacity: 1;
    box-shadow: 0 0 50px rgba(0, 255, 0, 1);
  }
  60% {
    height: 600px;
    bottom: 100px;
    opacity: 1;
    transform: scaleX(2);
    box-shadow: 0 0 100px rgba(0, 255, 0, 1);
  }
  100% {
    height: 800px;
    bottom: 400px;
    opacity: 0;
    transform: scaleX(3);
    box-shadow: 0 0 150px rgba(0, 255, 0, 0);
  }
}

.chart-label {
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--money-green);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
  letter-spacing: 2px;
  animation: pulse 1s infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: 80px 0;
}

.about {
  background: var(--darker-bg);
  position: relative;
}

.about h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lore-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lore-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.lore-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tokenomics {
  background: var(--dark-bg);
}

.tokenomics h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.token-detail {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.token-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.token-detail h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.token-detail p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.contract-address {
  font-size: 0.9rem !important;
  word-break: break-all;
  font-family: monospace;
}

.how-to-buy {
  background: var(--darker-bg);
}

.how-to-buy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.twitter-section {
  background: var(--darker-bg);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.crime-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
  animation: flash 1s infinite;
}

.twitter-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.twitter-link {
  display: inline-block;
  padding: 2rem 4rem;
  background: linear-gradient(135deg, var(--money-green), var(--accent-color));
  border: 3px solid var(--money-green);
  border-radius: 15px;
  text-decoration: none;
  margin-bottom: 3rem;
  transform: skew(-10deg);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
  transition: all 0.3s ease;
}

.twitter-link:hover {
  transform: skew(-10deg) scale(1.1);
  box-shadow: 0 0 60px rgba(0, 255, 0, 1);
}

.twitter-text {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--dark-bg);
  letter-spacing: 3px;
  transform: skew(10deg);
}

.chart-section {
  background: var(--darker-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.chart-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.chart-container {
  position: relative;
  max-width: 1000px;
  height: 400px;
  margin: 0 auto;
  background: rgba(0, 255, 0, 0.05);
  border: 2px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

#crimeChart {
  width: 100%;
  height: 100%;
}

.explosion-candles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.explosive-candle {
  position: absolute;
  bottom: 0;
  width: 8px;
  background: var(--money-green);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
  animation: explodeUp 3s ease-out infinite;
}

@keyframes explodeUp {
  0% {
    height: 50px;
    bottom: 0;
    opacity: 0.3;
  }
  50% {
    height: 200px;
    bottom: 0;
    opacity: 1;
    box-shadow: 0 0 40px rgba(0, 255, 0, 1);
  }
  100% {
    height: 300px;
    bottom: 200px;
    opacity: 0;
    transform: scaleX(1.5);
    box-shadow: 0 0 60px rgba(0, 255, 0, 0);
  }
}

.chart-caption {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.crime-ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--money-green);
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  padding: 0 2rem;
  color: var(--money-green);
  font-family: monospace;
  font-size: 0.9rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.crime-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
}

.crime-stat {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--money-green);
  font-family: monospace;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

@media (max-width: 768px) {
  .chaos-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .main-title {
    font-size: 3rem !important;
  }

  .hero-chart {
    width: 100%;
    height: 300px;
    margin-left: 0;
    margin-top: 2rem;
  }

  .crime-stats-chaos {
    gap: 1rem;
  }

  .stat-chaos {
    padding: 1rem;
  }

  .btn-chaos {
    padding: 1rem 2rem;
  }

  .btn-text-main {
    font-size: 1.2rem;
  }

  .crime-ticker {
    font-size: 0.8rem;
  }

  .floating-text {
    display: none;
  }
}

.mute-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid var(--money-green);
  color: var(--money-green);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2000;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
  animation: pulseMute 2s infinite;
}

@keyframes pulseMute {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.mute-button:hover {
  background: var(--money-green);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.crime-alert {
  position: fixed;
  background: linear-gradient(135deg, var(--money-green), var(--accent-color));
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
  z-index: 9999;
  animation: alertPop 0.5s ease-out;
}

@keyframes alertPop {
  0% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.seizure-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: difference;
  animation: seizure 0.1s infinite;
}

@keyframes seizure {
  0% {
    background: rgba(255, 0, 0, 0.1);
  }
  33% {
    background: rgba(0, 255, 0, 0.1);
  }
  66% {
    background: rgba(0, 0, 255, 0.1);
  }
  100% {
    background: rgba(255, 255, 0, 0.1);
  }
}

.flying-gif {
  position: fixed;
  width: 150px;
  height: 150px;
  z-index: 100;
  animation: flyAround 10s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes flyAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(-50px, 100px) rotate(180deg);
  }
  75% {
    transform: translate(-100px, -100px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.rainbow-text {
  background: linear-gradient(
    to right,
    #ff0000,
    #ff7f00,
    #ffff00,
    #00ff00,
    #0000ff,
    #4b0082,
    #9400d3
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow 2s linear infinite;
}

@keyframes rainbow {
  to {
    background-position: 200% center;
  }
}

.shaking {
  animation: violentShake 0.2s infinite;
}

@keyframes violentShake {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-5px) translateY(2px) rotate(-2deg);
  }
  50% {
    transform: translateX(5px) translateY(-2px) rotate(2deg);
  }
  75% {
    transform: translateX(-3px) translateY(3px) rotate(-1deg);
  }
}

.supply-control {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 0, 0, 0.1);
  border: 3px solid #ff0000;
  border-radius: 15px;
  animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
  }
}

.supply-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #ff0000;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.supply-bar {
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #ff0000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.supply-fill {
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, #ff0000, #ff6600);
  animation: burnAnimation 2s infinite;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes burnAnimation {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(0.95);
    opacity: 0.8;
  }
}

.supply-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ff6600;
}

.blink-text {
  animation: blink 0.5s infinite;
}

.shizo-text {
  margin-top: 2rem;
  text-align: center;
}

.shizo-text p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--money-green);
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.rotating {
  animation: rotateForever 10s linear infinite;
}

@keyframes rotateForever {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.popup-spam {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 500;
}

.popup {
  position: absolute;
  background: linear-gradient(135deg, #ff0000, #ffff00);
  border: 5px solid #000;
  padding: 1rem;
  border-radius: 10px;
  animation: popupBounce 3s infinite;
  transform: rotate(-10deg);
}

@keyframes popupBounce {
  0%,
  100% {
    transform: scale(1) rotate(-10deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
}

.popup h3 {
  margin: 0;
  font-family: "Comic Sans MS", cursive;
  color: #000;
}

.popup p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #000;
}

.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--money-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  animation: cursorPulse 0.5s infinite;
}

@keyframes cursorPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.bottom-chaos {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: var(--money-green);
  padding: 10px 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  z-index: 1000;
  border-top: 3px solid var(--money-green);
}

.mini-text {
  display: block;
  font-size: 0.7rem;
  color: #ff0000;
  margin-top: 0.3rem;
  font-family: "Comic Sans MS", cursive;
  animation: flash 0.5s infinite;
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Make everything more chaotic */
body * {
  animation: glitchAll 10s infinite;
}

@keyframes glitchAll {
  0%,
  100% {
    filter: hue-rotate(0deg) contrast(100%);
  }
  25% {
    filter: hue-rotate(20deg) contrast(150%);
  }
  50% {
    filter: hue-rotate(-20deg) contrast(80%);
  }
  75% {
    filter: hue-rotate(10deg) contrast(120%);
  }
}

.hero-content {
  animation: wobble 5s ease-in-out infinite;
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

.riding-with-us {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 0, 0.1);
  border: 3px dashed #ffff00;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.riding-with-us::before {
  content: "🚗💨";
  position: absolute;
  font-size: 5rem;
  opacity: 0.1;
  animation: driveBy 10s linear infinite;
}

@keyframes driveBy {
  from {
    left: -100px;
  }
  to {
    left: 100%;
  }
}

.riders-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
}

.riders-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.rider {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--money-green);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rider::after {
  content: "🏎️";
  position: absolute;
  bottom: -5px;
  right: -5px;
  font-size: 2rem;
  opacity: 0.3;
  transform: rotate(20deg);
}

.rider-name {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: #ffff00;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
  margin-bottom: 0.5rem;
}

.rider-status {
  display: block;
  font-family: "Comic Sans MS", cursive;
  font-size: 1rem;
  color: var(--money-green);
  font-weight: bold;
}
