 /* Basic Reset */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Body Style */
  body {
    
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f88f92 20%, #d46445 100%);
    overflow: hidden;
  }

  
  .container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
  }

  
  h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff6a00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .controls button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    transition: all 0.3s ease;
  }

  .controls button:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #fbc2eb, #a6c1ee);
  }

  
  .choice-images img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 10px;
    opacity: 0;
    transform: scale(0.5);
    animation: fadeIn 0.5s forwards;
  }

  .choice-images img:hover {
    transform: scale(1.2) rotate(10deg);
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }


  .scoreboard {
    font-size: 1.5rem;
    color: #444;
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
  }

  .scoreboard span {
    color: #ff4e50;
    font-weight: bold;
    font-size: 2rem;
    animation: scorePop 0.5s ease;
  }

  @keyframes scorePop {
    from { transform: scale(1.2); color: #ff4e50; }
    to { transform: scale(1); color: #444; }
  }

  /* Result Pop-up */
  .result {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: #ff6a00;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 20px auto;
    width: fit-content;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
  }

  .result.show {
    transform: scale(1);
    opacity: 1;
  }

  /* Dropdown Style */
  .dropdown {
    margin-bottom: 10px;
  }

  .dropdown select {
    padding: 8px;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 20px 15px;
    }
    h1 {
      font-size: 1.8rem;
    }
    .controls button {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    .choice-images img {
      width: 60px;
      height: 60px;
    }
    .scoreboard {
      font-size: 1.2rem;
    }
  }