body {
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .game-container {
    text-align: center;
  }
  
  input {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  #youtube-container {
    margin-top: 20px;
  }
  
  #game-display {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #444;
  }
  
  #game-controls {
    margin-top: 20px;
  }
  