/* styles.css */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .game-container {
    text-align: center;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hands {
    display: flex;
    justify-content: space-around;
    margin: 2rem auto;
    width: 80%;
  }
  
  .player-hand, .robot-hand {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: rotateX(30deg);
    transition: all 0.5s ease;
  }
  
  .player-hand.swing, .robot-hand.swing {
    animation: swing 1s ease;
  }
  
  @keyframes swing {
    0%, 100% {
      transform: translateY(0) rotateX(30deg);
    }
    50% {
      transform: translateY(-20px) rotateX(30deg);
    }
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .move-btn {
    font-size: 1.5rem;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 5px;
    background: #ff6600;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .move-btn:hover {
    background: #ff4500;
  }
  
  .result {
    margin-top: 2rem;
    font-size: 1.5rem;
    animation: fadeIn 1s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  