.game-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.choices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.choice {
  width: 120px;
  height: 120px;
  border: none;
  border-radius: 50%;
  background: #FFC7C7;
  font-size: 40px;
  transition: 0.3s;
}
.choice span {
  display: block;
  font-size: 16px;
}
.choice:hover {
  transform: translateY(-10px);
  background: #DC7646;
}

.battle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 40px 0;
}

.battle p {
  font-size: 50px;
}

.score {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.score div {
  background: #6C476E;
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
}
.score div span {
  display: block;
  font-size: 30px;
}

footer {
  text-align: center;
  padding: 30px;
  color: #6C476E;
  font-weight: 600;
}
footer span {
  color: #DC7646;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .choices {
    flex-direction: column;
    align-items: center;
  }
  .battle {
    gap: 20px;
  }
  .score {
    flex-direction: column;
    align-items: center;
  }
}
body {
  background: #FFC7C7;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  background: #6C476E;
}
.navbar .navbar-brand {
  color: white;
  font-weight: bold;
}

.hero {
  padding: 100px 0;
}
.hero h1 {
  font-size: 3rem;
  color: #6C476E;
}
.hero p {
  font-size: 1.2rem;
}

.btn-primary {
  background: #DC7646;
  border: none;
}
.btn-primary:hover {
  background: #A45C5C;
}/*# sourceMappingURL=style.css.map */