body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #6820b6, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .scoreboard {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .score {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 120px;
  }
  
  .score h2 {
    margin: 0;
    font-size: 20px;
  }
  
  .score p {
    font-size: 36px;
    margin-top: 10px;
  }
  
  .result {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .choices {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .choice {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s;
  }
  
  .choice:hover {
    transform: scale(1.1);
    background-color: #f1f1f1;
  }
  