/* ============================================
   GRAND OPENING COUNTDOWN - REZISTMU THEME
   ============================================ */

.countdown-container {
  position: absolute;
  top: 340px;
  left: 44%;
  transform: translateX(-50%);
  width: auto;
  max-width: 360px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(18, 10, 14, 0.92), rgba(28, 18, 22, 0.88));
  border: 1px solid rgba(201, 160, 80, 0.4);
  border-radius: 5px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(201, 160, 80, 0.1);
  overflow: visible;
  z-index: 50;
  pointer-events: none;
}

.countdown-container * {
  pointer-events: auto;
}

.countdown-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.countdown-glow {
  display: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.countdown-header {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.countdown-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #f0d090;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 0 8px rgba(201, 160, 80, 0.3);
}

.countdown-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 8px;
  gap: 8px;
}

.countdown-divider .line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 80, 0.6), transparent);
}

.countdown-divider .star {
  color: #c9a050;
  font-size: 8px;
}

@keyframes title-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 160, 80, 0.6), 0 0 40px rgba(201, 160, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8); }
  50% { text-shadow: 0 0 30px rgba(201, 160, 80, 0.8), 0 0 60px rgba(201, 160, 80, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8); }
}

.countdown-wings {
  display: none;
}

.wing {
  display: none;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 8px 0;
  flex-wrap: nowrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 160, 80, 0.25);
  border-radius: 3px;
  padding: 8px 12px;
  min-width: 55px;
  transition: all 0.3s ease;
}

.time-block:hover {
  border-color: rgba(201, 160, 80, 0.6);
  box-shadow: 0 0 15px rgba(201, 160, 80, 0.2);
}

.time-value {
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #f0d090;
  line-height: 1;
}

.time-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 7px;
  font-weight: 600;
  color: #c9a050;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0.7;
}

.time-separator {
  font-family: 'Special Elite', cursive;
  font-size: 16px;
  color: rgba(201, 160, 80, 0.35);
  line-height: 1;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 49%, 100% { opacity: 1; }
  50%, 99% { opacity: 0.3; }
}

.countdown-message {
  display: none;
}

.countdown-datetime {
  text-align: center;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  color: #c9a050;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 160, 80, 0.2);
}

.countdown-datetime span {
  margin: 0 5px;
}

.countdown-details {
  display: none;
}

.detail-item {
  display: none;
}

.countdown-launched {
  text-align: center;
  padding: 15px 20px;
}

.launched-icon {
  font-size: 30px;
  margin-bottom: 8px;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.launched-message {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #f0d090;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(201, 160, 80, 0.5);
}

.countdown-particles {
  display: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(201, 160, 80, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(201, 160, 80, 0.7);
  animation: float 12s infinite;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 75%; animation-delay: 6s; }
.particle:nth-child(5) { left: 95%; animation-delay: 8s; }

@keyframes float {
  0% { top: 100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: -10%; opacity: 0; }
}

@media (max-width: 768px) {
  .countdown-container { padding: 10px 15px 15px; top: 45px; }
  .countdown-title { font-size: 18px; }
  .time-block { min-width: 50px; padding: 6px 10px; }
  .time-value { font-size: 22px; }
  .time-separator { font-size: 18px; }
  .countdown-message { font-size: 11px; }
}

@media (max-width: 480px) {
  .countdown-title { font-size: 16px; }
  .time-block { min-width: 45px; padding: 5px 8px; }
  .time-value { font-size: 18px; }
  .time-label { font-size: 7px; }
}
