body {
  background-color: #0b0b0f;

  background-image:
    url('/assets/bg/alien.png'),
    url('/assets/bg/coin.png'),
    url('/assets/bg/joystick.png'),
    url('/assets/bg/spaceship.png');

  background-repeat: no-repeat;

  /* dimensioni più grandi = meno presenza */
  background-size:
    150px,
    150px,
    150px,
    150px;

  /* sparse nella pagina */
  background-position:
    10% 16%,     /* alien */
    87% 10%,    /* coin */
    39% 37%,    /* joystick */
    87% 45%;    /* spaceship */

  /* rende i colori Solana più soft */
  background-blend-mode: screen;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(0,0,0,0.70);
  z-index: -1;
}

/* Round Countdown - Vintage Arcade */
#roundCountdownBox {
  position: relative;
}

#roundCountdownBox .rc-digits {
  width: 100%;
  font-family: 'DS-Digital', monospace;
  font-size: clamp(38px, 6vw, 84px);
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 18px 16px;
  border-radius: 14px;

  /* vintage digital green look */
  color: #39ff14;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(57, 255, 20, 0.25);

  /* glow */
  text-shadow:
    0 0 6px rgba(57, 255, 20, 0.45),
    0 0 18px rgba(57, 255, 20, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 20, 0.12),
    0 0 18px rgba(57, 255, 20, 0.12);
}

/* Big timer sizing (responsive) */
#roundCountdownBox .rc-digits {
  font-size: clamp(38px, 6vw, 84px);
}

/* Footer small meta */
#roundCountdownBox .rc-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* Optional: make card background feel arcade */
#roundCountdownBox.card {
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

@font-face {
  font-family: 'DS-Digital';
  src: url('/assets/fonts/DS-DIGI.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}