/* --------------------------- CRYPTO RUNNER CUSTOM STYLING ---------------------------- */

/* Dino Font by Devfolio */
@font-face {
  font-family: 'OnchainDino';
  src: url('extra/OnchainDino-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Crypto Theme Colors */
:root {
  --crypto-gold: #FFD700;
  --crypto-orange: #FF6B35;
  --crypto-cyan: #00D9FF;
  --crypto-purple: #9B59B6;
  --crypto-pink: #FF69B4;
  --crypto-green: #00FF88;
  --crypto-bg-dark: #0a0a1a;
  --crypto-bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  --neon-glow: 0 0 10px var(--crypto-cyan), 0 0 20px var(--crypto-cyan), 0 0 30px var(--crypto-cyan);
}

/* Container Layout - Tight spacing */
.container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px;
  max-width: 100%;
}

/* Header - minimal padding */
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  position: relative;
}

.header h1 {
  font-size: 1.8rem;
  margin: 5px 0;
  line-height: 1.2;
}

/* Leaderboard Button */
.leaderboard-btn {
  font-size: 1.5rem;
  padding: 8px 12px;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid var(--crypto-cyan);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.leaderboard-btn:hover {
  background: rgba(0, 217, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  transform: scale(1.05);
}

/* Score Display - compact */
.score-display {
  display: flex;
  gap: 20px;
  margin-top: 5px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  border: 2px solid var(--crypto-cyan);
  box-shadow: var(--neon-glow);
  flex-wrap: wrap;
  justify-content: center;
}

.distance-score {
  font-family: OnchainDino;
  font-size: 1rem;
  color: var(--crypto-cyan);
  text-shadow: 0 0 10px var(--crypto-cyan);
}

.token-counter {
  font-family: OnchainDino;
  font-size: 1rem;
  color: var(--crypto-gold);
  text-shadow: 0 0 10px var(--crypto-gold);
}

body {
  background: var(--crypto-bg-gradient);
  min-height: 100vh;
}

.game-area-wrapper .trex-game .runner-container,
.trex-game .runner-container {
  transition: all 0.3s;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), 0 0 40px rgba(155, 89, 182, 0.2);
  animation: border-gradient 4s linear infinite;
}

/* Neon styled headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: OnchainDino;
  text-transform: uppercase;
  color: var(--crypto-cyan);
  text-shadow: 0 0 10px var(--crypto-cyan), 0 0 20px var(--crypto-cyan);
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 10px var(--crypto-cyan), 0 0 20px var(--crypto-cyan);
  }
  to {
    text-shadow: 0 0 15px var(--crypto-cyan), 0 0 30px var(--crypto-cyan), 0 0 40px var(--crypto-purple);
  }
}

.container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding: 20px;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.header h4 {
  color: var(--crypto-gold);
  text-shadow: 0 0 8px var(--crypto-gold);
  font-size: 0.9rem;
}

/* Score Display */
.score-display {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  border: 2px solid var(--crypto-cyan);
  box-shadow: var(--neon-glow);
}

.token-counter {
  font-family: OnchainDino;
  font-size: 1.3rem;
  color: var(--crypto-gold);
  text-shadow: 0 0 10px var(--crypto-gold);
}

.hi-score {
  font-family: OnchainDino;
  font-size: 1.1rem;
  color: var(--crypto-purple);
  text-shadow: 0 0 10px var(--crypto-purple);
}

/* Config Box */
.config-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-family: OnchainDino;
  text-transform: uppercase;
  color: var(--crypto-cyan);
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.controls-info {
  text-align: center;
  padding: 15px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.controls-info p {
  margin: 8px 0;
  color: #fff;
  font-size: 0.9rem;
}

.flex-box {
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

/* Mobile Screen */
@media screen and (max-width: 768px) {
  .flex-box {
    flex-direction: column;
    gap: 24px;
  }
  
  .header h1 {
    font-size: 1.8rem;
  }
  
  .score-display {
    gap: 15px;
    padding: 8px 15px;
  }
  
  .token-counter,
  .hi-score {
    font-size: 1rem;
  }
  
  /* Make canvas larger touch targets */
  .runner-canvas {
    touch-action: none;
  }
  
  /* Visual feedback for touch */
  .runner-canvas:active {
    opacity: 0.9;
  }
}

.flex-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.flex-item input {
  width: 180px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--crypto-cyan);
  border-radius: 4px;
  color: #fff;
  padding: 5px;
}

.flex-item input::file-selector-button {
  background: var(--crypto-cyan);
  color: #000;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: OnchainDino;
  text-transform: uppercase;
}

.flex-item label {
  color: var(--crypto-cyan);
}

.link-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

a {
  font-size: 14px;
  color: var(--crypto-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid transparent;
}

a:hover {
  color: #fff;
  border-color: var(--crypto-cyan);
  box-shadow: 0 0 10px var(--crypto-cyan);
}

a:active {
  scale: 0.95;
}

/* Token Collect Animation */
@keyframes token-collect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.token-collected {
  animation: token-collect 0.3s ease-out forwards;
}

/* Floating particles effect */
@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crypto-gold);
  animation: float-particle 1s ease-out forwards;
  pointer-events: none;
}

/* Rainbow trail effect for high scores */
@keyframes rainbow-trail {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.rainbow-score {
  animation: rainbow-trail 2s linear infinite;
}

/* Canvas styling for game */
.runner-canvas {
  border-radius: 8px;
}

/* Game over screen enhancement */
.game-over-panel {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 2px solid var(--crypto-orange);
  border-radius: 10px;
}

/* Night mode enhancements */
@media (prefers-color-scheme: dark) {
  .icon {
    filter: invert(1) hue-rotate(180deg);
  }

  .runner-canvas {
    filter: invert(1) hue-rotate(180deg) saturate(1.2);
  }
}

/* Pulse animation for collecting tokens */
@keyframes score-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.score-pulse {
  animation: score-pulse 0.2s ease-out;
}

/* Start Instructions */
.start-instructions {
  text-align: center;
  padding: 10px 15px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  margin: 5px 0;
}

.start-instructions p {
  margin: 3px 0;
  font-family: OnchainDino, sans-serif;
  font-size: 0.85rem;
  color: #fff;
  text-shadow: 0 0 5px var(--crypto-cyan);
}

/* Mobile Touch Controls */
.mobile-controls {
  display: none;
  width: 100%;
  max-width: 600px;
  gap: 10px;
  margin: 0;
  padding: 8px 0 0 0;
}

.touch-area {
  flex: 1;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: all 0.15s ease;
}

.touch-area:active,
.touch-area.active {
  background: rgba(0, 217, 255, 0.2);
  border-color: var(--crypto-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
  transform: scale(0.98);
}

.touch-area span {
  font-size: 1.5rem;
}

.touch-area small {
  font-family: OnchainDino, sans-serif;
  font-size: 0.75rem;
  color: #888;
}

.touch-jump {
  border-color: rgba(0, 217, 255, 0.3);
}

.touch-jump:active,
.touch-jump.active {
  border-color: var(--crypto-cyan);
}

.touch-duck {
  border-color: rgba(255, 107, 53, 0.3);
}

.touch-duck:active,
.touch-duck.active {
  border-color: var(--crypto-orange);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

/* Show mobile controls on touch devices */
@media (pointer: coarse), (max-width: 768px) {
  .mobile-controls {
    display: flex;
  }
  
  /* Hide pinned footer during gameplay, show on overlays */
  .pinned-footer {
    display: none;
  }
  .pinned-footer.visible {
    display: flex;
  }
  
  /* Mobile overlays - ensure they render properly */
  .game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.92);
    padding: 10px;
    box-sizing: border-box;
  }
  
  .game-overlay.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .overlay-content {
    padding: 20px 15px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 16px;
  }
  
  .overlay-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .overlay-btn {
    padding: 14px 24px;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .start-btn {
    padding: 16px 30px;
    font-size: 1.2rem;
  }
  
  .score-breakdown {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .score-row {
    padding: 4px 0;
    font-size: 0.85rem;
  }
  
  .final-score {
    padding: 10px 15px;
  }
  
  .final-score span:last-child {
    font-size: 1.4rem;
  }
  
  .new-high-score {
    font-size: 1rem;
  }
  
  .start-instructions-overlay {
    font-size: 0.75rem;
    margin: 10px 0;
  }
  
  .start-instructions-overlay p {
    margin: 3px 0;
  }
  
  .start-tokens-display {
    font-size: 0.85rem;
  }
  
  .start-hint {
    font-size: 0.7rem;
  }
  
  .play-again-btn {
    font-size: 1.1rem;
    padding: 14px 24px;
  }
  
  /* Hide config box on mobile */
  .config-box {
    display: none;
  }
}

/* Combo multiplier display */
.combo-display {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'OnchainDino', sans-serif;
  font-size: 1.5rem;
  color: #FF69B4;
  text-shadow: 0 0 10px #FF69B4, 0 0 20px #FF69B4;
  animation: combo-pulse 0.5s ease-out;
  pointer-events: none;
  z-index: 100;
}

@keyframes combo-pulse {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

/* Floating text animation */
.floating-text {
  position: absolute;
  font-family: 'OnchainDino', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  pointer-events: none;
  text-shadow: 0 0 10px currentColor;
  animation: float-up 1s ease-out forwards;
}

@keyframes float-up {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-60px) scale(1.5); opacity: 0; }
}

/* Bomb warning flash */
.bomb-warning {
  animation: bomb-flash 0.3s ease-in-out infinite;
}

@keyframes bomb-flash {
  0%, 100% { box-shadow: 0 0 10px #FF4444; }
  50% { box-shadow: 0 0 30px #FF4444, 0 0 50px #FF4444; }
}

/* Mobile touch feedback */
.runner-canvas:active {
  opacity: 0.95;
}

/* Responsive combo text */
@media screen and (max-width: 768px) {
  .combo-display {
    font-size: 1.2rem;
    top: 10px;
    right: 10px;
  }
  
  .floating-text {
    font-size: 1rem;
  }
}

/* ============================================ */
/* Game Overlays (Start Screen + Game Over)    */
/* ============================================ */

/* Game area wrapper - contains canvas + overlays */
.game-area-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  min-height: 200px; /* fallback before canvas loads */
}

.game-area-wrapper .trex-game {
  max-width: 600px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 8px;
}

.game-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid var(--crypto-cyan);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.4);
  animation: overlay-slide-in 0.4s ease-out;
}

@keyframes overlay-slide-in {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.overlay-content h2 {
  font-family: 'OnchainDino', sans-serif;
  font-size: 2rem;
  color: var(--crypto-cyan);
  text-shadow: 0 0 15px var(--crypto-cyan);
  margin-bottom: 15px;
}

.score-breakdown {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #c9d1d9;
  font-size: 0.95rem;
}

.score-row:last-child {
  border-bottom: none;
}

.score-row span:last-child {
  color: var(--crypto-gold);
  font-weight: bold;
}

.final-score {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 217, 255, 0.15));
  border: 2px solid var(--crypto-gold);
  border-radius: 10px;
  padding: 12px 20px;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.final-score span:first-child {
  color: #fff;
  font-family: 'OnchainDino', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.final-score span:last-child {
  color: var(--crypto-gold);
  font-family: 'OnchainDino', sans-serif;
  font-size: 1.8rem;
  text-shadow: 0 0 15px var(--crypto-gold);
}

.new-high-score {
  color: #FFD700;
  font-family: 'OnchainDino', sans-serif;
  font-size: 1.2rem;
  text-shadow: 0 0 15px #FFD700, 0 0 30px #FFA500;
  animation: high-score-pulse 0.8s ease-in-out infinite alternate;
  margin-bottom: 10px;
}

@keyframes high-score-pulse {
  from {
    transform: scale(1);
    text-shadow: 0 0 15px #FFD700, 0 0 30px #FFA500;
  }
  to {
    transform: scale(1.08);
    text-shadow: 0 0 25px #FFD700, 0 0 50px #FFA500;
  }
}

.overlay-btn {
  background: linear-gradient(135deg, #00d9ff 0%, #9b59b6 100%);
  color: #000;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'OnchainDino', sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
}

.overlay-btn:active {
  transform: scale(0.97);
}

.start-btn {
  margin-top: 10px;
  padding: 16px 40px;
  font-size: 1.3rem;
  animation: start-btn-glow 2s ease-in-out infinite alternate;
}

@keyframes start-btn-glow {
  from {
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
  }
  to {
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.6), 0 0 55px rgba(155, 89, 182, 0.3);
  }
}

.start-tokens-display {
  color: var(--crypto-gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.start-instructions-overlay {
  text-align: center;
  margin: 15px 0;
}

.start-instructions-overlay p {
  margin: 6px 0;
  color: #c9d1d9;
  font-size: 0.85rem;
}

.start-hint {
  color: #666;
  font-size: 0.75rem;
  margin-top: 10px;
}

.play-again-btn {
  margin-top: 5px;
}

/* Gradient border animation */
@keyframes border-gradient {
  0% { border-color: var(--crypto-cyan); }
  25% { border-color: var(--crypto-purple); }
  50% { border-color: var(--crypto-pink); }
  75% { border-color: var(--crypto-orange); }
  100% { border-color: var(--crypto-cyan); }
}

/* Border animation is in the merged rule above */

/* Add sparkle effect background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================ */
/* Power-up Status Display                      */
/* ============================================ */

#powerup-status {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.powerup-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'OnchainDino', sans-serif;
  animation: powerup-pulse 1.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* Power-up type color themes */
.powerup-airdrop {
  background: rgba(0, 191, 255, 0.15);
  border: 2px solid #00BFFF;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.powerup-diamond-hands {
  background: rgba(0, 255, 136, 0.15);
  border: 2px solid #00FF88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.powerup-moon-rocket {
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid #FF6B35;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.powerup-bull-run {
  background: rgba(255, 68, 68, 0.15);
  border: 2px solid #FF4444;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

@keyframes powerup-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.85; }
}

.powerup-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.powerup-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.powerup-name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  text-shadow: 0 0 5px currentColor;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.powerup-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
}

.powerup-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 60px;
}

.powerup-timer-text {
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
}

.powerup-bar-track {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.powerup-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Bar colors per type */
.powerup-airdrop .powerup-bar-fill {
  background: linear-gradient(90deg, #00BFFF, #0066CC);
}

.powerup-diamond-hands .powerup-bar-fill {
  background: linear-gradient(90deg, #00FF88, #00AA55);
}

.powerup-moon-rocket .powerup-bar-fill {
  background: linear-gradient(90deg, #FF6B35, #CC4400);
}

.powerup-bull-run .powerup-bar-fill {
  background: linear-gradient(90deg, #FF4444, #CC0000);
}

@media screen and (max-width: 480px) {
  .powerup-indicator {
    padding: 4px 10px;
    gap: 5px;
  }
  .powerup-icon {
    font-size: 1.1rem;
  }
  .powerup-name {
    font-size: 0.65rem;
  }
  .powerup-desc {
    font-size: 0.5rem;
  }
  .powerup-bar-track {
    width: 45px;
    height: 5px;
  }
  .powerup-timer-text {
    font-size: 0.6rem;
  }
}
