* { box-sizing: border-box; font-family: 'Poppins', system-ui, sans-serif; }

body {
  margin: 0;
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  max-width: 800px;
  width: 95%;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 { 
  font-size: 3rem; 
  margin-bottom: 20px; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: -webkit-linear-gradient(#fff, #ffd369);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 { font-size: 2rem; color: #ffd369; }
p { font-size: 1.3rem; line-height: 1.8; margin-bottom: 25px; }

button, a.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 40px;
  border-radius: 50px;
  background: linear-gradient(45deg, #FF512F, #DD2476);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

button:hover, a.btn:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #DD2476, #FF512F);
}

.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.path { 
  background: rgba(255, 255, 255, 0.1); 
  padding: 20px; 
  border-radius: 20px; 
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.path:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* Input Styles */
input {
  padding: 12px 20px;
  font-size: 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  outline: none;
  text-align: center;
  margin-top: 20px;
  width: 80%;
  max-width: 300px;
  transition: 0.3s;
}

input:focus {
  background: rgba(255,255,255,0.2);
  border-color: #ffd369;
}

/* Confetti */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ffd369;
  animation: fall linear forwards;
}

@keyframes fall {
  to { transform: translateY(100vh) rotate(720deg); }
}
