body {
      background-color: #000000;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
      font-family: sans-serif;
    }

    #controls {
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    #status-bar {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      gap: 20px;
      align-items: center;
      font-weight: bold;
      font-size: 18px;
    }

    #status-bar span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    #game {
      position: relative;
      width: 1300px;
      height: 800px;
      background-color: beige;
      border: 2px solid #333;
      overflow: hidden;
      display: none;
    }

    .player, .obstacle {
      position: absolute;
      width: 100px;
      height: 100px;
    }

    .player {
      background-image: url("aset kucing main.png");
      background-size: contain;
      background-repeat: no-repeat;
      width: 200px; 
      height: 200px;
      bottom: 0;
    }

    .obstacle {
      background-image: url("Employment-Job-Application.webp");
      background-size: contain;
      background-repeat: no-repeat;
      width: 200px;
      height: 250px;
    }

    .hit {
      background-image: url("Kucing kalah.png") !important;
    }

    .game-over {
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url(Employment-Job-Application.webp);
      background-size: cover;
      background-repeat: no-repeat;
      color: rgb(0, 0, 0);
      font-size: 4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    button {
      padding: 14px 28px;
      margin: 10px;
      font-size: 20px;
      cursor: pointer;
    }

    .glow-button {
      position: relative;
      overflow: hidden;
      border: none;
      outline: none;
      padding: 14px 28px;
      font-size: 20px;
      background-color: #454545;
      color: white;
      cursor: pointer;
      border-radius: 5px;
    }

    .glow-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.3), transparent 40%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .glow-button:hover::before {
      opacity: 1;
    }

    .icon {
      width: 24px;
      height: 24px;
    }