body {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    background-color: #222;
    color: #fff;
    margin: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-around;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .slot-machine {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .reel-container {
    width: 200px;
    height: 200px;
    margin: 0 10px;
    border: 3px solid #333;
    border-radius: 10px;
    background-color: #FFF;
    overflow: hidden;
    position: relative;
  }
  
  .reel {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: spin infinite linear;
  }
  
  .reel img {
    width: 200px;
    height: 200px;
  }
  
  button {
    font-family: 'Courier New', Courier, monospace;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 60%;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #218838;
  }

  #scoreboard {
    margin: auto;
    width: 60%;
    background: black;
    border-radius: 10px;
    padding: 10px;
    margin-top: 18px;
  }
  
  #result {
    position: fixed;
    font-size: 50px;
    width: 680px;
    margin-left: 0;
    background-color: black;
    margin-top: -189px;
  }
  
 .scoreitem {
    display: flex;
    flex-direction: row;
    align-items: center;
 }

 #jackpot-count {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}
 }
  ul {
    list-style-type: none;
  }


  @keyframes spin {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%);
    }
  }
  
  @keyframes flash {
    0%, 100% {
      background-color: white;
    }
    50% {
      background-color: red;
    }
  }
  
  .flash {
    animation: flash 0.2s ease-in-out 5;
  }
  