/* Emoji-Tahmin premium shell — cinematic reveal stage with brass frame, felt backdrop, glow halos */

body[data-game-theme="emoji-tahmin"] {
  background:
    radial-gradient(ellipse at center top, hsla(280, 50%, 22%, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at center, hsl(265, 18%, 12%) 0%, hsl(265, 22%, 6%) 100%);
}

/* Word banner — kelime banner cinematic stage */
body[data-game-theme="emoji-tahmin"] .word-banner {
  background:
    radial-gradient(ellipse at center, hsla(38, 80%, 35%, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, hsl(28, 30%, 18%) 0%, hsl(28, 30%, 12%) 100%);
  border: 3px solid transparent;
  border-image: linear-gradient(135deg,
    hsl(45, 90%, 70%) 0%,
    hsl(38, 80%, 50%) 30%,
    hsl(28, 60%, 28%) 60%,
    hsl(38, 80%, 50%) 90%) 1;
  border-radius: 14px;
  padding: 22px 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 6px;
  color: hsl(38, 90%, 78%);
  text-shadow:
    0 2px 8px hsla(38, 80%, 30%, 0.5),
    0 0 18px hsla(38, 80%, 50%, 0.4);
  box-shadow:
    0 14px 40px hsla(220, 50%, 2%, 0.6),
    inset 0 2px 0 hsla(45, 100%, 80%, 0.18),
    inset 0 -3px 0 hsla(28, 60%, 12%, 0.5),
    0 0 0 1px hsla(38, 80%, 50%, 0.25);
  position: relative;
}
body[data-game-theme="emoji-tahmin"] .word-banner::before,
body[data-game-theme="emoji-tahmin"] .word-banner::after {
  content: '★';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(45, 100%, 70%);
  font-size: 18px;
  text-shadow: 0 0 12px hsla(45, 100%, 70%, 0.7);
}
body[data-game-theme="emoji-tahmin"] .word-banner::before { left: 12px; }
body[data-game-theme="emoji-tahmin"] .word-banner::after  { right: 12px; }

/* Hint chosen slots — big cinematic reveal panels */
body[data-game-theme="emoji-tahmin"] .hint-chosen {
  gap: 14px !important;
  margin: 22px 0 !important;
  min-height: 100px !important;
}
body[data-game-theme="emoji-tahmin"] .hint-chosen .slot {
  width: 90px !important;
  height: 90px !important;
  border-radius: 14px !important;
  font-size: 50px !important;
  background:
    radial-gradient(circle at 30% 25%, hsla(45, 90%, 65%, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, hsl(28, 30%, 22%) 0%, hsl(28, 30%, 12%) 100%) !important;
  border: 2.5px solid hsl(38, 60%, 40%) !important;
  box-shadow:
    0 10px 28px hsla(220, 50%, 2%, 0.5),
    inset 0 2px 0 hsla(45, 100%, 80%, 0.15),
    inset 0 -3px 0 hsla(28, 60%, 8%, 0.5);
  transition: all 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
body[data-game-theme="emoji-tahmin"] .hint-chosen .slot.empty {
  background:
    radial-gradient(circle, hsla(38, 30%, 30%, 0.15), transparent 70%),
    hsla(28, 30%, 8%, 0.5) !important;
  border-style: dashed !important;
  border-color: hsl(38, 30%, 30%) !important;
  color: hsla(38, 50%, 60%, 0.3) !important;
}
body[data-game-theme="emoji-tahmin"] .hint-chosen .slot.filled {
  border-color: hsl(155, 70%, 50%) !important;
  background:
    radial-gradient(circle at 30% 25%, hsla(155, 70%, 50%, 0.25) 0%, transparent 70%),
    linear-gradient(180deg, hsl(155, 30%, 18%) 0%, hsl(155, 30%, 10%) 100%) !important;
  box-shadow:
    0 10px 28px hsla(220, 50%, 2%, 0.5),
    0 0 0 4px hsla(155, 70%, 50%, 0.18),
    inset 0 2px 0 hsla(155, 70%, 70%, 0.25);
  animation: emoji-pop 0.55s cubic-bezier(0.2, 1.5, 0.4, 1);
}
@keyframes emoji-pop {
  0% { transform: scale(0.4) rotate(-20deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(8deg); opacity: 1; }
  80% { transform: scale(0.95) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Hint pool — emoji palette */
body[data-game-theme="emoji-tahmin"] .hint-pool {
  gap: 10px !important;
  max-width: 460px !important;
  margin: 16px auto !important;
}
body[data-game-theme="emoji-tahmin"] .hint-btn {
  background:
    radial-gradient(circle at 30% 25%, hsla(38, 50%, 35%, 0.5) 0%, transparent 65%),
    linear-gradient(180deg, hsl(28, 22%, 18%) 0%, hsl(28, 22%, 11%) 100%) !important;
  border: 2px solid hsl(38, 40%, 32%) !important;
  border-radius: 12px !important;
  font-size: 36px !important;
  box-shadow:
    0 6px 16px hsla(220, 50%, 2%, 0.4),
    inset 0 1.5px 0 hsla(45, 100%, 80%, 0.12);
  transition: all 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body[data-game-theme="emoji-tahmin"] .hint-btn:hover:not(:disabled) {
  background:
    radial-gradient(circle at 30% 25%, hsla(38, 80%, 55%, 0.45) 0%, transparent 65%),
    linear-gradient(180deg, hsl(38, 50%, 22%) 0%, hsl(38, 50%, 14%) 100%) !important;
  border-color: hsl(38, 80%, 55%) !important;
  transform: translateY(-2px) scale(1.08) !important;
  box-shadow:
    0 12px 28px hsla(38, 80%, 30%, 0.4),
    0 0 0 2px hsla(38, 80%, 55%, 0.4),
    inset 0 2px 0 hsla(45, 100%, 80%, 0.25) !important;
}

/* Options — cinematic guess buttons */
body[data-game-theme="emoji-tahmin"] .options {
  gap: 14px !important;
  margin-top: 22px !important;
}
body[data-game-theme="emoji-tahmin"] .opt-btn {
  background:
    radial-gradient(ellipse at center top, hsla(45, 80%, 50%, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, hsl(28, 22%, 22%) 0%, hsl(28, 22%, 14%) 100%) !important;
  border: 2.5px solid hsl(38, 50%, 35%) !important;
  padding: 22px !important;
  border-radius: 14px !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: hsl(38, 80%, 78%) !important;
  letter-spacing: 1px !important;
  text-shadow: 0 2px 6px hsla(28, 60%, 12%, 0.6) !important;
  box-shadow:
    0 8px 20px hsla(220, 50%, 2%, 0.5),
    inset 0 2px 0 hsla(45, 100%, 80%, 0.12);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body[data-game-theme="emoji-tahmin"] .opt-btn:hover:not(:disabled) {
  background:
    radial-gradient(ellipse at center top, hsla(155, 70%, 50%, 0.25) 0%, transparent 70%),
    linear-gradient(180deg, hsl(155, 40%, 22%) 0%, hsl(155, 40%, 14%) 100%) !important;
  border-color: hsl(155, 70%, 55%) !important;
  color: hsl(155, 80%, 80%) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 30px hsla(155, 70%, 20%, 0.5),
    0 0 0 3px hsla(155, 70%, 55%, 0.25),
    inset 0 2px 0 hsla(155, 80%, 80%, 0.2) !important;
}

/* Reveal phase — cinematic burst */
body[data-game-theme="emoji-tahmin"] #phase-reveal {
  animation: reveal-fade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 24px;
  background:
    radial-gradient(ellipse at center, hsla(38, 60%, 30%, 0.25) 0%, transparent 70%),
    hsla(28, 30%, 8%, 0.5);
  border-radius: 16px;
  border: 2px solid hsl(38, 50%, 30%);
  margin-top: 18px;
  box-shadow:
    0 12px 30px hsla(220, 50%, 2%, 0.5),
    inset 0 1px 0 hsla(45, 100%, 80%, 0.15);
}
@keyframes reveal-fade {
  0% { transform: translateY(20px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
body[data-game-theme="emoji-tahmin"] #reveal-result {
  font-family: Georgia, serif;
  font-size: 32px !important;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px hsla(0, 0%, 0%, 0.4);
}

/* Phase headers - subtle decorative */
body[data-game-theme="emoji-tahmin"] #pick-info,
body[data-game-theme="emoji-tahmin"] #guess-info {
  background: hsla(38, 50%, 25%, 0.2);
  border-left: 3px solid hsl(38, 80%, 55%);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  color: hsl(38, 80%, 75%);
  letter-spacing: 0.5px;
}
