/* Countdown Modal Styles */
.countdown-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-out;
  overflow: hidden;
}

.countdown-modal-overlay.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.countdown-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 90%;
  padding: 3rem 2rem;
  animation: fadeIn 1.5s ease-out;
}

.countdown-logo {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.countdown-message {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.countdown-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
  transition: all 0.3s ease;
}

.countdown-label {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.countdown-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.countdown-notify-btn {
  padding: 1.2rem 3rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.countdown-notify-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.countdown-close-btn {
  display: none;
}

.countdown-social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.countdown-social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.countdown-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.countdown-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .countdown-modal-content {
    padding: 2rem 1rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .countdown-unit {
    min-width: 70px;
  }

  .countdown-number {
    min-width: 70px;
    padding: 0.5rem;
  }

  .countdown-notify-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .countdown-social-links {
    gap: 1rem;
  }

  .countdown-social-link {
    width: 40px;
    height: 40px;
  }

  .countdown-social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* Success message after notification signup */
.countdown-success-message {
  display: none;
  padding: 1rem 2rem;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 12px;
  color: #1DB954;
  font-weight: 600;
  margin-top: 1rem;
  animation: slideDown 0.5s ease-out;
}

.countdown-success-message.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Email Modal Styles */
.email-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.email-modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}

.email-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.05em;
}

.email-modal-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2rem 0;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.email-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.email-modal-buttons {
  display: flex;
  gap: 1rem;
}

.email-submit-btn,
.email-cancel-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.email-submit-btn {
  background: #fff;
  color: #000;
}

.email-submit-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.email-cancel-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
  .email-modal-content {
    padding: 2rem 1.5rem;
  }
  
  .email-modal-title {
    font-size: 1.3rem;
  }
  
  .email-modal-buttons {
    flex-direction: column;
  }
}
