* {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Times New Roman", sans-serif;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      
    }

    .banner {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffcc44;
      border: 0.5px solid white;
      border-radius: 1px;
      padding: 1px 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.2);
      gap: 10px;
      width: auto;
      min-width: 280px;
      max-width: 100%;
    }

    .text {
      font-size: clamp(14px, 99vw, 18px);
      color: #ff3300;
      white-space: nowrap;
      font-weight: bold;
    }

    .diamond {
      width: 40px;
      height: 40px;
      background-color: #ffffcc;
      border: 0.5px solid green;
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.5s ease;
      box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }

    .number {
      transform: rotate(-45deg);
      font-size: 17px;
      font-weight: bold;
      color: #333;
      transition: transform 0.3s ease;
    }

    .number.animate {
      transform: rotate(-45deg) scale(1.4);
      color: #007700;
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      margin-left: 10px;
      background-color: grey;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      transition: background-color 0.5s ease, transform 0.3s ease;
    }

    .dot.active {
      background-color: #00cc00;
      animation: pulse 1.5s infinite;
    }

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

    #superActive {
      display: none;
      margin-top: 20px;
      font-size: 22px;
      color: #ff0000;
      font-weight: bold;
      animation: flash 1s infinite;
    }

    @keyframes flash {
      0% { opacity: 1; }
      50% { opacity: 0.3; }
      100% { opacity: 1; }
    }

    @media (max-width: 280px) {
      .banner {
        flex-direction: column;
        padding: 10px;
      }
      .diamond {
        width: 30px;
        height: 30px;
      }
      .text {
        font-size: 14px;
      }
    }

