@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.main-header {
  font-family: 'Press Start 2P', cursive;
  text-align: center;
  font-size: 48px;
  color: #33ff33;
  margin: 20px 0;
  text-shadow: 0 0 10px #33ff33;
  animation: textPulse 4s infinite;
}

body {
  font-family: 'Press Start 2P', cursive;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #0c0c2b;
  line-height: 1.8;
  color: #33ff33;
  position: relative;
}

/* CRT screen effect */
.crt-effect {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  z-index: 1000;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0c0c2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease-out;
}

.loading-logo {
  color: #33ff33;
  font-size: 36px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #33ff33;
  animation: textPulse 2s infinite;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(51, 255, 51, 0.1);
  border-left-color: #33ff33;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: #33ff33;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 3px;
  animation: loadingText 1.5s steps(3) infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textPulse {
  0% { text-shadow: 0 0 5px #33ff33; }
  50% { text-shadow: 0 0 20px #33ff33, 0 0 30px #33ff33; }
  100% { text-shadow: 0 0 5px #33ff33; }
}

@keyframes loadingText {
  0% { content: "LOADING"; }
  33% { content: "LOADING."; }
  66% { content: "LOADING.."; }
  100% { content: "LOADING..."; }
}

/* Scanline effect */
.crt-effect:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
  pointer-events: none;

/* TV Frame effect */
.tv-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 20px solid #111;
  border-radius: 20px;
  box-shadow: 
    inset 0 0 20px 10px rgba(0, 0, 0, 0.8),
    0 0 0 10px #222;
  pointer-events: none;
  z-index: 999;
}

/* Add television corners */
.tv-frame::before,
.tv-frame::after,
.tv-frame::before,
.tv-frame::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
}

.tv-frame::before {
  top: -30px;
  left: -30px;
}

.tv-frame::after {
  top: -30px;
  right: -30px;
}

  z-index: 1001;
  animation: scanline 7s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main-content {
  width: 100%;
  min-width: 0;
}

.bottom-leaderboard {
  width: 95%;
  max-width: 1000px;
  margin: 15px auto;
  padding: 15px;
  background-color: #000;
  border: 4px solid #33ff33;
  box-shadow: 0 0 15px rgba(51, 255, 51, 0.5);
  box-sizing: border-box;
  text-align: center;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pixelated box effect */
.main-content, .sidebar, #message-form, #messages, #leaderboard, #top-spender-banner {
  border: 4px solid #33ff33;
  box-shadow: 0 0 15px rgba(51, 255, 51, 0.5);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
  body {
    padding: 8px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 14px;
  }

  .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 8px;
  }

  .main-content, .sidebar {
    width: 100%;
    max-width: 100%;
  }

  #message-form, #messages, #leaderboard {
    padding: 15px 10px;
  }

  input, textarea {
    padding: 8px;
    font-size: 12px;
  }

  button {
    padding: 8px 15px;
    font-size: 12px;
  }

  #top-spender-banner {
    padding: 15px;
    margin: 8px auto 20px;
  }

  #top-spender-banner-message {
    font-size: 16px;
  }

  .sidebar {
    position: static;
  }

  #top-spender-banner {
    margin: 5px auto 25px;
    padding: 15px;
    width: calc(100% - 30px);
    box-sizing: border-box;
  }

  #top-spender-banner-message {
    font-size: 18px;
  }

  .winners-link-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .winners-banner-link,
  .snake-banner-link {
    margin: 0;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .leaderboard-tabs {
    flex-wrap: wrap;
  }

  .tab-button {
    min-width: calc(50% - 4px);
    max-width: none;
    margin: 2px;
    font-size: 12px;
    padding: 8px 4px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  #message-form, #messages, #leaderboard {
    padding: 15px;
  }

  .message-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .message-amount {
    margin-top: 5px;
  }

  h2 {
    font-size: 18px;
  }

  input, textarea, button {
    padding: 10px;
  }

  #top-spender-banner {
    border-radius: 12px;
    padding: 15px;
  }

  #top-spender-banner-message {
    font-size: 18px;
  }

  #top-spender-banner:after,
  #top-spender-banner:before {
    display: none;
  }
}

#top-spender-banner {
  background-color: #000;
  color: #33ff33;
  text-align: center;
  padding: 28px;
  margin: 10px auto 35px;
  position: relative;
  border: 4px solid #33ff33;
  width: 95%;
  max-width: 1000px;
  min-height: 80px;
  max-height: fit-content;
  overflow: hidden;
  transition: max-height 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 
    0 0 5px #33ff33,
    0 0 10px #33ff33,
    inset 0 0 5px #33ff33;
  animation: pulse 2s infinite;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#top-spender-banner.expanded {
  max-height: 500px;
  overflow-y: auto;
}

/* Remove the speech bubble arrows */
#top-spender-banner:after,
#top-spender-banner:before {
  display: none;
}

/* Glowing pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 5px #33ff33, 0 0 10px #33ff33, inset 0 0 5px #33ff33; }
  50% { box-shadow: 0 0 10px #33ff33, 0 0 20px #33ff33, inset 0 0 10px #33ff33; }
  100% { box-shadow: 0 0 5px #33ff33, 0 0 10px #33ff33, inset 0 0 5px #33ff33; }
}

#top-spender-banner-message {
  font-size: 24px;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.4;
  text-shadow: 
    0 0 5px #33ff33,
    0 0 10px #33ff33;
  animation: textFlicker 2s linear infinite;
}

@keyframes textFlicker {
  0% { opacity: 1.0; }
  2% { opacity: 0.8; }
  4% { opacity: 1.0; }
  19% { opacity: 1.0; }
  21% { opacity: 0.6; }
  23% { opacity: 1.0; }
  80% { opacity: 1.0; }
  83% { opacity: 0.8; }
  87% { opacity: 1.0; }
}

/* --- Top Spender Banner Indicator --- */

/* Base style for the indicator */
.expand-indicator {
  /* Positioning (from your code) */
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);

  /* Appearance (from your code + cursor) */
  color: #ff33ff;
  font-size: 14px;
  cursor: pointer; /* Indicate it's part of the clickable area */

  /* --- Animation & Visibility Control --- */
  display: none; /* Start hidden - JS will add '.visible' class to show it */
  /* Use recommended smooth flash animation */
  animation: flashIndicator 1.5s infinite ease-in-out;
  /* If you strongly prefer your 'blink' animation, you can change the line above back to: */
  /* animation: blink 1s step-end infinite; */
}

/* This rule makes the indicator show up when JavaScript adds the 'visible' class */
/* (More specific selector to ensure it targets the one inside the banner) */
#top-spender-banner .expand-indicator.visible {
  display: block; /* Makes it visible */
  /* Use 'inline-block' instead if 'block' causes layout issues */
}

/* This rule styles the indicator ONLY when the PARENT banner has the 'expanded' class */
#top-spender-banner.expanded .expand-indicator {
  /* 1. Stop the animation */
  animation: none;

  /* 2. Hide the indicator completely when expanded (Recommended) */
  display: none;

  /* --- Alternative: Keep visible but stop flashing --- */
  /* If you prefer to keep it visible but static when expanded,
     comment out 'display: none;' above and uncomment these lines: */
  /*
  display: block;
  opacity: 1;
  */
  /* --- End Alternative --- */
}

/* Keyframes definition for the recommended 'flashIndicator' animation */
@keyframes flashIndicator {
  0%, 100% {
    opacity: 0.6; /* Dimmed state */
  }
  50% {
    opacity: 1; /* Full visibility state */
  }
}

/* If you decided to keep your 'blink' animation instead of 'flashIndicator',
   ensure you have the @keyframes blink definition somewhere in your CSS, like: */
/*
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
*/

@keyframes blink {
  50% { opacity: 0; }
}

/* Set banner height constraints */
#top-spender-banner {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  cursor: pointer;
}

#top-spender-banner.expanded {
  max-height: 500px;
}

/* Show expand indicator only for long messages that aren't expanded */
#top-spender-banner:not(.expanded) .expand-indicator {
  display: block;
}

/* Animation for top spender celebration */
@keyframes celebrate {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 15px #33ff33, 0 0 30px #33ff33, inset 0 0 15px #33ff33;
    background-color: #000; 
  }
  25% { 
    transform: scale(1.05); 
    box-shadow: 0 0 30px #ff33ff, 0 0 60px #ff33ff, inset 0 0 30px #ff33ff;
    background-color: #330033; 
  }
  50% { 
    transform: scale(1); 
    box-shadow: 0 0 15px #33ffff, 0 0 30px #33ffff, inset 0 0 15px #33ffff;
    background-color: #003333; 
  }
  75% { 
    transform: scale(1.05); 
    box-shadow: 0 0 30px #ffff33, 0 0 60px #ffff33, inset 0 0 30px #ffff33;
    background-color: #333300; 
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 0 15px #33ff33, 0 0 30px #33ff33, inset 0 0 15px #33ff33;
    background-color: #000; 
  }
}

#top-spender-banner.celebrate {
  animation: celebrate 2s ease-in-out;
  animation-iteration-count: 3;
  border-color: #ff33ff;
}

/* Add pixelation effect during celebration */
#top-spender-banner.celebrate::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  animation: pixelScan 0.5s linear infinite;
}

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

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.confetti-pixel {
  position: absolute;
  animation: fall 2s linear forwards;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  font-weight: bold;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3);
}

@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(45vh) rotate(360deg) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(1);
    opacity: 0;
  }
}

/* Congratulations message */
#congrats-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  color: #ff33ff;
  padding: 25px 40px;
  border: 4px solid #ff33ff;
  font-size: 18px;
  box-shadow: 
    0 0 10px #ff33ff,
    0 0 20px #ff33ff,
    inset 0 0 10px #ff33ff;
  z-index: 1000;
  animation: glitchAnim 5s ease-in-out forwards;
  text-transform: uppercase;
  text-align: center;
}

@keyframes glitchAnim {
  0% { 
    clip-path: inset(50% 0 50% 0); 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.5);
  }
  10% { 
    clip-path: inset(0 0 0 0); 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1);
  }
  20% { clip-path: inset(0% 0 0% 0); }
  30% { clip-path: inset(0% 0 0% 0); }
  40% { clip-path: inset(0% 33% 0% 33%); }
  50% { clip-path: inset(0% 0 0% 0); }
  60% { clip-path: inset(0% 0 0% 0); }
  70% { clip-path: inset(15% 0 15% 0); }
  80% { 
    clip-path: inset(0% 0 0% 0); 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1);
  }
  100% { 
    clip-path: inset(50% 0 50% 0); 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.5);
  }
}

/* Sound functionality has been removed */

#message-form, #messages {
  background-color: #000;
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #33ff33 #000;
}

#messages::-webkit-scrollbar {
  width: 8px;
}

#messages::-webkit-scrollbar-track {
  background: #000;
}

#messages::-webkit-scrollbar-thumb {
  background-color: #33ff33;
  border-radius: 4px;
  border: 2px solid #000;
}

#message-form::before, #messages::before, #leaderboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #33ff33, #ff33ff, #33ffff, #ff33ff, #33ff33);
  z-index: 1;
}

#leaderboard {
  background-color: #000;
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
}

h2 {
  color: #ff33ff;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 4px solid #33ff33;
  padding-bottom: 10px;
  text-shadow: 3px 3px 0 #000;
}

h2:before {
  content: "►";
  margin-right: 10px;
  color: #33ff33;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #33ff33;
  background-color: #000;
  color: #33ff33;
  box-sizing: border-box;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

input:focus, textarea:focus {
  outline: none;
  border-color: #ff33ff;
  box-shadow: 0 0 10px rgba(255, 51, 255, 0.7);
}

textarea {
  height: 120px;
  resize: vertical;
}

button {
  background-color: #000;
  color: #33ff33;
  border: 2px solid #33ff33;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Press Start 2P', cursive;
  transition: all 0.2s ease;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

button:hover {
  background-color: #33ff33;
  color: #000;
  box-shadow: 0 0 15px rgba(51, 255, 51, 0.8);
}

#message-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.message-item {
  border-bottom: 1px solid #33ff33;
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.message-item:last-child {
  border-bottom: none;
}

.message-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #33ff33 20%, #33ff33 80%, transparent);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.message-header span {
  font-size: 14px;
  text-transform: uppercase;
}

.message-amount {
  color: #ff33ff;
  font-size: 16px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 51, 255, 0.7);
}

.top-spender {
  background-color: rgba(51, 255, 51, 0.1);
  border-left: 4px solid #ff33ff;
  padding-left: 15px;
  margin-left: -15px;
  animation: scanline-highlight 2s linear infinite;
}

@keyframes scanline-highlight {
  0% { background-color: rgba(51, 255, 51, 0.1); }
  50% { background-color: rgba(255, 51, 255, 0.1); }
  100% { background-color: rgba(51, 255, 51, 0.1); }
}

.message-item p {
  margin: 0;
  line-height: 1.5;
}

.cha-ching {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffcc33;
    font-size: 20px;
    opacity: 0;
    animation: chaChing 1s ease-out forwards;
    z-index: 2;
}

.coin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffcc33;
    font-size: 24px;
    opacity: 0;
    animation: coinBurst 1s ease-out forwards;
    z-index: 2;
}

.coin:nth-child(4) { animation-delay: 0.1s; margin-left: -20px; }
.coin:nth-child(5) { animation-delay: 0.2s; margin-left: 20px; }

@keyframes chaChing {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
    100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

@keyframes coinBurst {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
    100% { transform: translateY(-60px) scale(1); opacity: 0; }
}

/* Top spenders list styling */
h3 {
  color: #222;
  margin: 20px 0 12px;
  font-weight: 500;
  font-size: 16px;
}

#top-spenders-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.spender-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.spender-item:last-child {
  border-bottom: none;
}

.spender-rank {
  color: #888;
  font-weight: 500;
  margin-right: 10px;
  min-width: 24px;
}

.spender-name {
  flex-grow: 1;
  font-weight: 500;
}

.spender-amount {
  color: #3498db;
  font-weight: 600;
}

/* Leaderboard tabs styling */
.leaderboard-tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0 15px;
  border-bottom: 4px solid #33ff33;
  gap: 8px;
}

.tab-button {
  background: #000;
  border: 2px solid #33ff33;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #33ff33;
  transition: all 0.2s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
  max-width: 150px;
}

.tab-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(51, 255, 51, 0.2) 50%, transparent);
  transform: translateY(-100%);
  animation: button-scan 3s linear infinite;
}

@keyframes button-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Mobile tab styling */
@media (max-width: 480px) {
  .leaderboard-tabs {
    justify-content: space-between;
  }

  .tab-button {
    padding: 8px 5px;
    font-size: 10px;
    flex: 1;
    text-align: center;
  }
}

.tab-button:hover {
  color: #ff33ff;
  border-color: #ff33ff;
  box-shadow: 0 0 10px rgba(255, 51, 255, 0.5);
}

.tab-button.active {
  color: #ff33ff;
  border-color: #ff33ff;
  box-shadow: 
    0 0 5px #ff33ff,
    inset 0 0 5px #ff33ff;
}

.tab-content {
  padding: 15px 10px;
  width: 100%;
  overflow: visible;
  word-wrap: break-word;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  margin-top: 10px;
}

#daily-top-spenders-list,
#weekly-top-spenders-list,
#monthly-top-spenders-list,
#alltime-top-spenders-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.spender-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  gap: 15px;
  width: 100%;
  background: rgba(51, 255, 51, 0.1);
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid rgba(51, 255, 51, 0.3);
}

.spender-item:last-child {
  margin-bottom: 0;
}

.spender-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winners-link-container {
  text-align: center;
  margin: -15px 0 25px 0;
}

.winners-banner-link {
  display: inline-block;
  color: #ffcc33;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #ffcc33;
}

.winners-banner-link:hover {
  color: #ff33ff;
  text-shadow: 0 0 10px #ff33ff;
  transform: scale(1.05);
}

.snake-banner-link {
  display: inline-block;
  color: #33ff33;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #33ff33;
  margin-left: 20px;
}

.snake-banner-link:hover {
  color: #ff33ff;
  text-shadow: 0 0 10px #ff33ff;
  transform: scale(1.05);
}

.donations-banner-link {
  display: block;
  color: #ff3366;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #ff3366;
  margin-top: 10px;
}

.donations-banner-link:hover {
  color: #ff33ff;
  text-shadow: 0 0 10px #ff33ff;
  transform: scale(1.05);
}

.charity-dropdown {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #33ff33;
  background-color: #000;
  color: #33ff33;
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
  cursor: pointer;
}

.charity-dropdown:focus {
  outline: none;
  border-color: #ff33ff;
  box-shadow: 0 0 10px rgba(255, 51, 255, 0.7);
}

.winners-link {
  display: inline-block;
  margin-top: 15px;
  color: #ff33ff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.winners-link:hover {
  color: #33ff33;
  text-shadow: 0 0 10px #33ff33;
}