/* Enhanced Comic Sans for maximum irony */
.comic-sans {
  font-family: 'Comic Sans MS', 'Papyrus', cursive, sans-serif !important;
}

/* Chaos background with extreme effects */
.chaos-bg {
  background: linear-gradient(45deg, 
    #1a0033, #330066, #660099, #9900cc, 
    #cc00ff, #ff3366, #ff6600, #ffcc00, 
    #66ff00, #00ff66, #0066ff, #6600ff
  );
  background-size: 400% 400%;
  animation: chaosGradient 10s ease infinite;
}

@keyframes chaosGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced floating animations */
.floating-emoji {
  position: absolute;
  opacity: 0.7;
  animation: chaosFloat 12s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes chaosFloat {
  0% {
    transform: translateY(110vh) translateX(-20vw) rotate(0deg) scale(0.5);
  }
  25% {
    transform: translateY(75vh) translateX(25vw) rotate(90deg) scale(1.2);
  }
  50% {
    transform: translateY(50vh) translateX(50vw) rotate(180deg) scale(0.8);
  }
  75% {
    transform: translateY(25vh) translateX(75vw) rotate(270deg) scale(1.5);
  }
  100% {
    transform: translateY(-20vh) translateX(120vw) rotate(360deg) scale(0.3);
  }
}

/* Jesus God Achievement Banner */
.jesus-god-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: linear-gradient(45deg, gold, yellow, orange, red);
  padding: 2rem;
  border-radius: 20px;
  border: 5px solid white;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
  animation: jesusGodAppear 3s ease-in-out;
  text-align: center;
}

@keyframes jesusGodAppear {
  0% { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  }
  50% { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
  }
  100% { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

/* Enhanced scam cards */
.enhanced-scam-card {
  background: linear-gradient(135deg, 
    rgba(147, 51, 234, 0.9), 
    rgba(236, 72, 153, 0.9),
    rgba(251, 191, 36, 0.3)
  );
  border: 3px solid transparent;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: cardFloat 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.enhanced-scam-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    red, orange, yellow, green, blue, indigo, violet, red
  );
  border-radius: 15px;
  z-index: -1;
  animation: rainbowBorder 3s linear infinite;
}

@keyframes rainbowBorder {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-5px) rotate(-1deg); }
}

.enhanced-scam-card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 40px rgba(255, 255, 0, 0.6);
}

.enhanced-scam-card.selected {
  border-color: gold;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  transform: scale(1.02);
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-description {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-item {
  font-size: 0.8rem;
  color: #10b981;
}

/* Multi-countdown chaos */
.multi-countdown {
  background: linear-gradient(45deg, 
    rgba(220, 38, 127, 0.9), 
    rgba(157, 23, 77, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  color: #fbbf24;
  text-shadow: 0 0 10px currentColor;
}

.countdown-label {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-top: 0.5rem;
}

/* Enhanced leaderboard */
.enhanced-leaderboard {
  background: linear-gradient(135deg, 
    rgba(5, 150, 105, 0.9), 
    rgba(6, 95, 70, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 1.5rem;
  height: fit-content;
}

.leaderboard-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 10px currentColor;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: itemSlideIn 0.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes itemSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rank-badge {
  font-weight: bold;
  color: #fbbf24;
  font-family: 'Comic Sans MS', cursive;
}

.rank-1 .rank-badge { color: gold; }
.rank-2 .rank-badge { color: silver; }
.rank-3 .rank-badge { color: #cd7f32; }

.status-emoji {
  font-size: 1.2rem;
}

.project-name {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-cap {
  font-size: 0.7rem;
  color: #10b981;
  font-weight: bold;
}

/* Panic meter */
.panic-meter {
  background: linear-gradient(135deg, 
    rgba(75, 85, 99, 0.9), 
    rgba(55, 65, 81, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 1.5rem;
  height: fit-content;
}

.panic-gauge {
  position: relative;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to right, green, yellow, red);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid white;
}

.panic-fill {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: width 1s ease;
}

.panic-needle {
  position: absolute;
  top: -5px;
  transform: translateX(-50%);
  font-size: 1.5rem;
  transition: left 1s ease;
}

/* Copium dispenser */
.copium-dispenser {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.9), 
    rgba(29, 78, 216, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  height: fit-content;
}

.copium-button {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  padding: 1rem 2rem;
  border-radius: 25px;
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.copium-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.5);
}

.copium-quote {
  animation: copiumAppear 0.5s ease-in-out, copiumDisappear 0.5s ease-in-out 2.5s forwards;
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes copiumAppear {
  from { opacity: 0; transform: translate(-50%, -20px) scale(0); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes copiumDisappear {
  to { opacity: 0; transform: translate(-50%, -20px) scale(0); }
}

/* Buzzword bingo */
.buzzword-bingo {
  background: linear-gradient(135deg, 
    rgba(139, 69, 19, 0.9), 
    rgba(101, 51, 15, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 1.5rem;
  grid-column: span 2;
}

.bingo-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 10px currentColor;
}

.bingo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bingo-cell {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Comic Sans MS', cursive;
}

.bingo-cell:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

.bingo-cell.marked {
  background: linear-gradient(45deg, gold, orange);
  color: black;
  font-weight: bold;
  border-color: gold;
  animation: bingoMark 0.5s ease-in-out;
}

@keyframes bingoMark {
  0% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.bingo-counter {
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
}

/* Chaos token generator */
.chaos-generator {
  background: linear-gradient(135deg, 
    rgba(147, 51, 234, 0.9), 
    rgba(126, 34, 206, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.generator-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 15px currentColor;
}

.chaos-generate-button {
  background: linear-gradient(45deg, gold, orange, red);
  color: white;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  padding: 1.5rem 3rem;
  border-radius: 25px;
  border: 4px solid white;
  cursor: pointer;
  font-size: 1.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  animation: holyGlow 2s ease-in-out infinite alternate;
}

@keyframes holyGlow {
  0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 255, 255, 0.3); }
}

.chaos-generate-button:hover {
  transform: scale(1.1) rotate(-2deg);
  animation: none;
  box-shadow: 0 0 50px rgba(255, 215, 0, 1);
}

.generator-subtitle {
  margin-top: 1rem;
  color: #d1d5db;
  font-style: italic;
  font-family: 'Comic Sans MS', cursive;
}

/* Extreme profit calculator */
.extreme-profit-calc {
  background: linear-gradient(135deg, 
    rgba(29, 78, 216, 0.9), 
    rgba(30, 64, 175, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 2rem;
}

.calc-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 15px currentColor;
}

.input-label {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Comic Sans MS', cursive;
  font-weight: bold;
}

.chaos-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 3px solid gold;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  font-weight: bold;
}

.projection-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.projection-item {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid;
  text-align: center;
}

.projection-item.conservative {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
}

.projection-item.realistic {
  background: rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
}

.projection-item.jesus-god {
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 255, 255, 0.2)
  );
  border-color: gold;
  animation: divinePulse 2s ease-in-out infinite;
}

@keyframes divinePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 255, 255, 0.3); }
}

.projection-label {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
  font-family: 'Comic Sans MS', cursive;
}

.projection-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
  font-family: 'Comic Sans MS', cursive;
}

.projection-percent {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
}

.calc-disclaimer {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #9ca3af;
  text-align: center;
  font-style: italic;
}

/* Launch chaos container */
.launch-chaos-container {
  background: linear-gradient(45deg, 
    rgba(220, 38, 127, 0.9), 
    rgba(239, 68, 68, 0.9),
    rgba(251, 146, 60, 0.9)
  );
  border: 6px solid gold;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  animation: launchContainerPulse 3s ease-in-out infinite;
}

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

.selected-scam-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 20px currentColor;
}

.token-name-display {
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: 2rem;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 15px currentColor;
  animation: tokenGlow 2s ease-in-out infinite alternate;
}

@keyframes tokenGlow {
  0% { text-shadow: 0 0 15px #10b981; }
  100% { text-shadow: 0 0 30px #10b981, 0 0 45px #34d399; }
}

.mega-launch-button {
  background: linear-gradient(45deg, 
    #dc2626, #ea580c, #d97706, #ca8a04, #65a30d
  );
  color: white;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  padding: 2rem 4rem;
  border-radius: 25px;
  border: 6px solid white;
  cursor: pointer;
  font-size: 2rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  animation: megaButtonPulse 1.5s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

@keyframes megaButtonPulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
  }
  25% { 
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.6);
  }
  50% { 
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.8);
  }
  75% { 
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.6);
  }
}

.mega-launch-button:hover {
  transform: scale(1.2) rotate(5deg);
  animation: none;
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.8);
}

/* Testimonials chaos */
.testimonials-chaos {
  background: linear-gradient(135deg, 
    rgba(75, 85, 99, 0.9), 
    rgba(55, 65, 81, 0.9)
  );
  border: 4px solid gold;
  border-radius: 15px;
  padding: 2rem;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 20px currentColor;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  animation: testimonialFloat 4s ease-in-out infinite;
}

@keyframes testimonialFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.testimonial-text {
  font-style: italic;
  color: #d1d5db;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Comic Sans MS', cursive;
}

.testimonial-author {
  font-weight: bold;
  color: #fbbf24;
  font-family: 'Comic Sans MS', cursive;
  text-align: right;
}

/* Launch modal extreme */
.launch-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: modalOverlayAppear 0.5s ease-in-out;
}

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

.launch-modal-content {
  background: linear-gradient(45deg, 
    #059669, #0891b2, #7c3aed, #dc2626
  );
  padding: 4rem;
  border-radius: 25px;
  text-align: center;
  border: 8px solid gold;
  animation: modalContentAppear 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

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

.modal-explosion {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: explosionSpin 2s ease-in-out infinite;
}

@keyframes explosionSpin {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.2); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.modal-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 30px currentColor;
  animation: titlePulse 1s ease-in-out infinite alternate;
}

@keyframes titlePulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.modal-text {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-emoji-rain {
  display: flex;
  justify-content: space-around;
  font-size: 2rem;
}

.modal-emoji {
  animation: emojiRain 2s ease-in-out infinite;
}

@keyframes emojiRain {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(90deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  75% { transform: translateY(-10px) rotate(270deg); }
}

/* Enhanced footer */
.chaos-footer {
  background: linear-gradient(45deg, 
    #7f1d1d, #991b1b, #dc2626, #ef4444
  );
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scrolling-disclaimer {
  white-space: nowrap;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-family: 'Comic Sans MS', cursive;
  font-weight: bold;
  font-size: 1.1rem;
  animation: scrollText 30s linear infinite;
}

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

.main-disclaimer {
  max-width: 4xl;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 0 0 20px currentColor;
  animation: warningFlash 2s ease-in-out infinite;
}

@keyframes warningFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.disclaimer-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Comic Sans MS', cursive;
  line-height: 1.6;
}

.backlink {
  font-size: 1rem;
  color: #d1d5db;
  font-family: 'Comic Sans MS', cursive;
}

.berrry-link {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.berrry-link:hover {
  color: #f59e0b;
  text-shadow: 0 0 10px currentColor;
}

/* Sparkle effect enhanced */
.sparkle {
  position: relative;
  overflow: hidden;
}

.sparkle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 215, 0, 0.2),
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: enhancedSparkle 2s infinite;
  pointer-events: none;
}

@keyframes enhancedSparkle {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Blinking enhanced */
.blinking {
  animation: enhancedBlink 1.5s infinite;
}

@keyframes enhancedBlink {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Neon glow enhanced */
.neon-glow {
  text-shadow: 
    0 0 5px currentColor, 
    0 0 10px currentColor, 
    0 0 15px currentColor, 
    0 0 20px currentColor,
    0 0 30px currentColor;
  animation: neonFlicker 3s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
  0%, 100% { 
    text-shadow: 
      0 0 5px currentColor, 
      0 0 10px currentColor, 
      0 0 15px currentColor, 
      0 0 20px currentColor,
      0 0 30px currentColor;
  }
  50% { 
    text-shadow: 
      0 0 2px currentColor, 
      0 0 5px currentColor, 
      0 0 8px currentColor, 
      0 0 12px currentColor,
      0 0 18px currentColor;
  }
}

/* Pulse crazy enhanced */
.pulse-crazy {
  animation: enhancedPulseCrazy 2s infinite;
}

@keyframes enhancedPulseCrazy {
  0%, 100% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.05) rotate(2deg); }
  30% { transform: scale(0.95) rotate(-1deg); }
  45% { transform: scale(1.08) rotate(1deg); }
  60% { transform: scale(0.92) rotate(-2deg); }
  75% { transform: scale(1.03) rotate(0.5deg); }
  90% { transform: scale(0.98) rotate(-0.5deg); }
}

/* Rainbow text effect */
.rainbow-text {
  background: linear-gradient(45deg, 
    red, orange, yellow, green, blue, indigo, violet
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShift 3s ease-in-out infinite;
}

@keyframes rainbowShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chaos-footer .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .mega-launch-button {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }
  
  .modal-title {
    font-size: 2rem;
  }
  
  .buzzword-bingo {
    grid-column: span 1;
  }
  
  .bingo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .multi-countdown {
    grid-template-columns: 1fr;
  }
}