/* Custom styles for Disclosure Daiye */

:root {
  --accent: #22d3ee; /* cyan-400 */
  --accent-dark: #0e7490;
  --bg: #0a0a0a;
  --card: #111111;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.glass {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-digit {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings: "tnum";
}

.classified-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(12deg);
  border: 3px solid #ef4444;
  color: #ef4444;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 4px 16px;
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.3);
}

.reveal-text {
  position: relative;
}

.reveal-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  transition: width 0.4s ease;
}

.reveal-text:hover::after {
  width: 100%;
}

.countdown-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.countdown-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.teaser-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.teaser-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

#countdown.expired .digit {
  color: #ef4444;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 1.5s infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.3; }
  to { opacity: 1; }
}