/* -----------------------------
TRUTH OR DARE GENERATOR
----------------------------- */

.truth-dare-game {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  border-radius: 20px;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.truth-dare-game .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.truth-dare-game .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ffe0f0;
}

.game-card {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.choice-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: #fff;
  transition: all 0.3s ease;
}

.choice-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(238, 9, 121, 0.5);
}

.challenge-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
  color: #ee0979;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 15% auto;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #333;
}

.close-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #ff6a00;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.close-btn:hover {
  background: #ff6a00;
  color: #fff;
}
