    body {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100vh;
      background-color: #1e1e2f;
      font-family: Arial, sans-serif;
    }

    h1 {
      color: #fff;
      margin-bottom: 20px;
    }

    .slot-machine {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }

    .slot {
      width: 80px;
      height: 100px;
      background: #333;
      border: 4px solid #ffcc00;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 48px;
      color: #ffcc00;
      /* box-shadow: 0 0 15px rgba(255, 204, 0, 0.7); */
    }

    .spin-button {
      background-color: #ffcc00;
      border: none;
      padding: 10px 20px;
      font-size: 20px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .spin-button:hover {
      background-color: #ffdd33;
    }

    #result {
      color: #fff;
      font-size: 24px;
      margin-top: 15px;
      height: 30px;
    }

    .volume-control {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      color: #fff;
    }

    .volume-slider {
      width: 150px;
      height: 8px;
      border-radius: 5px;
      background: #333;
      outline: none;
      -webkit-appearance: none;
    }

    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffcc00;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }

    .volume-slider::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffcc00;
      cursor: pointer;
      border: none;
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }

    .volume-icon {
      font-size: 20px;
    }

    .volume-value {
      font-size: 14px;
      min-width: 35px;
    }    

    .amongus-gif {
      width: 200px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 10px;
      /* box-shadow: 0 0 15px rgba(255, 204, 0, 0.3); */
    }
