body {
    margin: 0;
    overflow: hidden;
    background: #000;
    font-family: sans-serif;
    color: white;
  }
  
  #sol-address {
    position: absolute;
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
    word-break: break-all;
    max-width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  #counter {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 45px;
    color: white;
    transition: transform 0.2s ease;
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .counter-pop {
    animation: pop 0.3s ease;
  }
  
  @keyframes pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.8); }
    100% { transform: scale(1); }
  }
  
  .jeeto {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: auto;
    user-select: none;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .jeeto:hover {
    transform: scale(1.2);
  }
  

  #score-announcer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
  }
  
  #score-announcer img {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: popInOut 1.2s ease-out forwards;
  }
  
  @media (max-width: 600px) {
    #score-announcer img {
      max-width: 80vw;
    }
  }
  
  @keyframes popInOut {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    20% {
      transform: scale(1.1);
      opacity: 1;
    }
    60% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(0.8);
      opacity: 0;
    }
  }

  img {
    -webkit-user-drag: none;
    user-drag: none;
  }