/* EP25 Lumi Gift Box Timer Styles */
.ep25-timer-wrap {
  position: absolute; right: 20px; bottom: 20px; z-index: 100;
  display: flex; flex-direction: column; max-width: 440px; width: calc(100% - 40px);
  pointer-events: auto; animation: ep25FadeIn 0.3s ease;
}
@keyframes ep25FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ep25-panel {
  background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.4); border-radius: 18px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.ep25-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.ep25-badge { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.ep25-hint { font-size: 12px; color: #fde68a; font-weight: 600; }
.ep25-clock-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(30, 41, 59, 0.8); border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px; padding: 16px; gap: 8px;
}
.ep25-clock-num {
  font-size: 48px; font-weight: 900; font-family: 'JetBrains Mono', monospace;
  color: #f59e0b; text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  animation: ep25Pulse 1s infinite alternate;
}
@keyframes ep25Pulse { from { transform: scale(1); } to { transform: scale(1.08); } }
.ep25-clock-label { font-size: 13px; color: #f8fafc; font-weight: 700; }
.ep25-btn-start {
  width: 100%; padding: 12px; font-size: 14px; font-weight: 800; border: none; border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #b45309); color: white; cursor: pointer; min-height: 48px;
  transition: all 0.2s ease;
}
.ep25-btn-start:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.ep25-btn-start:disabled { opacity: 0.6; cursor: not-allowed; }
.ep25-status-msg { font-size: 12px; font-weight: 700; color: #fde68a; text-align: center; min-height: 18px; }

.ep25-complete-wrap { width: 100%; max-width: 900px; margin: 14px auto 0; animation: ep25FadeIn 0.4s ease; }
.ep25-complete-card {
  background: rgba(15, 23, 42, 0.92); border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 20px; padding: 20px 24px; text-align: center;
}
.ep25-complete-icon { display: inline-block; background: rgba(245, 158, 11, 0.2); color: #f59e0b; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.ep25-comp-btn.primary { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; border: none; padding: 10px 18px; border-radius: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; }

@media (min-width: 769px) {
  .screen-container.ep25-split-screen .cinema-cut,
  .screen-container.ep25-result-screen .cinema-cut { width: calc(100% - 270px); }
  .screen-container.ep25-split-screen .cinema-cut.active,
  .screen-container.ep25-result-screen .cinema-cut.active { animation: none; transform: none; }
  .screen-container.ep25-split-screen .ep25-timer-wrap {
    right: 10px; bottom: 20px; width: 250px; max-width: 250px;
  }
  .screen-container.ep25-split-screen .ep25-panel { padding: 12px; gap: 8px; }
  .screen-container.ep25-split-screen .ep25-title-row { justify-content: center; text-align: center; }
  .screen-container.ep25-split-screen .ep25-clock-box { padding: 10px; }
  .screen-container.ep25-split-screen .ep25-clock-num { font-size: 38px; }
  .screen-container.ep25-result-screen .ep25-complete-wrap {
    position: absolute; z-index: 100; right: 10px; bottom: 20px;
    width: 250px; max-width: 250px; margin: 0;
  }
  .screen-container.ep25-result-screen .ep25-complete-card { padding: 14px 12px; }
  .screen-container.ep25-result-screen .ep25-complete-card h3 { font-size: 16px; margin: 6px 0; }
  .screen-container.ep25-result-screen .ep25-complete-card p { font-size: 12px; line-height: 1.5; margin: 6px 0; }
}

.ep25-silent-next-wrap {
  width: 100%; max-width: 900px; margin: 12px auto 0; text-align: center;
}
.ep25-silent-next-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white; border: none; padding: 12px 24px; border-radius: 14px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
  .ep25-timer-wrap { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; margin: 12px auto 0; }
}
