/* ===== EMOJI TYPING CHALLENGE (Dark Neon UI) ===== */
.emoji-typing {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1e1b4b 0%, #0f0a23 50%, #000 100%);
  padding-top: 100px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.55);
}

.emoji-typing .section-title {
  color: #ff66c4;
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255, 102, 196, 0.6);
  margin-bottom: 12px;
}

.emoji-typing .section-subtitle {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 35px;
}

/* Glass Challenge Card */
.challenge-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 25px;
  max-width: 500px;
  margin: auto;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 45px rgba(255, 0, 140, 0.2);
  animation: fadeUp .45s ease-in-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Emoji Display */
.emoji-display {
  font-size: 10rem;
  padding: 22px;
  margin-bottom: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.18);
  color: #ffffff;
  transition: 0.3s ease;
  text-shadow: 0 0 25px rgba(255, 0, 149, 0.9);
}

/* Input */
.emoji-typing input[type="text"] {
  width: 100%;
  padding: 15px;
  font-size: 1.8rem;
  border-radius: 15px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.12);
  color: #f1f5f9;
  outline: none;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  transition: .3s;
}

.emoji-typing input[type="text"]:focus {
  border-color: #ff66c4;
  box-shadow: 0 0 18px rgba(255, 102, 196, 0.7);
}

/* Neon Button */
.emoji-typing .btn {
  background: linear-gradient(135deg, #ff66c4, #ec4899);
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 45px;
  color: #fff;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.emoji-typing .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 102, 196, 0.8);
}

/* Score & Timer */
.emoji-typing p {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
}
