    body {
      background: #121212;
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 2vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      overflow-x: hidden;
    }
    #putartrosss {
      width: 90vw;
      max-width: 360px;
      display: flex;
      justify-content: space-between;
      gap: 1vw;
    }
    .reel {
      width: 28vw;
      max-width: 100px;
      height: 28vw;
      max-height: 100px;
      border: 3px solid #fff;
      border-radius: 12px;
      overflow: hidden;
      background: #222;
      position: relative;
    }
    .reel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      -webkit-user-drag: none;
      touch-action: none;
    }
    #spin-btn {
      margin: 3vh auto;
      padding: 2vh 4vw;
      font-size: clamp(16px, 4vw, 18px);
      border: none;
      border-radius: 12px 0 12px 0;
      background: linear-gradient(to bottom, #ff0077, #000, #ff0077);
      color: white;
      cursor: pointer;
      touch-action: manipulation;
      min-width: 120px;
    }
    #spin-btn:disabled {
      background: gray;
      cursor: not-allowed;
    }
    #message {
      margin-top: 2vh;
      font-size: clamp(16px, 4vw, 20px);
      min-height: 24px;
    }
    #tokens {
      margin-top: 1vh;
      font-weight: bold;
      font-size: clamp(14px, 3.5vw, 16px);
    }
    footer {
      margin-top: 2vh;
      font-size: clamp(12px, 3vw, 14px);
      color: #aaa;
    }
    h1 {
      margin: 2vh 0;
      font-size: clamp(24px, 6vw, 28px);
    }
    @media (max-width: 600px) {
      #putartrosss {
        width: 95vw;
      }
      .reel {
        width: 30vw;
        height: 30vw;
      }
      #spin-btn {
        padding: 2.5vh 5vw;
        font-size: clamp(14px, 4.5vw, 16px);
      }
    }
