/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
}

/* 🔥 SPLASH SCREEN */
#splash {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stadium-bg {
  width: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.splash-title {
  font-size: 2.5rem;
  z-index: 10;
  color: #00eaff;
  text-shadow: 0 0 20px cyan;
  animation: fadeIn 1.5s ease-in-out;
}

.loader {
  margin-top: 20px;
  border: 4px solid #00eaff;
  border-top: 4px solid transparent;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 1s linear infinite;
  z-index: 10;
}

/* Splash animations */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* MAIN CONTAINER */
.container {
  width: 90%;
  max-width: 600px;
  text-align: center;
  display: none; /* hidden until splash hides */
}

.title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00eaff;
}

.btn-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.game-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #00eaff;
  padding: 15px;
  border-radius: 15px;
  width: 110px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.game-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 234, 255, 0.4);
  box-shadow: 0 0 20px #00eaff;
}

.choice-img {
  height: 65px;
  margin-bottom: 8px;
}

.result-card {
  margin-top: 20px;
  background: rgba(255,255,255,0.12);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.reset-btn {
  margin-top: 25px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: #ff4d4d;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.reset-btn:hover {
  background: #ff2222;
  transform: scale(1.1);
  box-shadow: 0 0 10px red;
}
