/* ============================================
   WEBINAR REGISTRATION — Page-specific styles
   Loaded after /shared/styles.css
   ============================================ */

/* Countdown Timer */
.countdown {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Share Tech Mono', ui-monospace, SFMono-Regular, monospace;
  color: white;
}

@media (min-width: 768px) {
  .countdown {
    font-size: 1.875rem;
    gap: 1rem;
  }
}

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

.countdown-value {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.625rem 0.5rem;
  border-radius: 0.625rem;
  width: 3.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 15px rgba(255, 0, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background-image: linear-gradient(180deg, rgba(255, 26, 108, 0.08) 0%, transparent 50%);
  transition: transform 0.15s ease;
}

.countdown-value:hover {
  transform: scale(1.05);
  border-color: rgba(255, 26, 108, 0.3);
  box-shadow:
    0 0 20px rgba(255, 0, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .countdown-value {
    width: 3.75rem;
    padding: 0.75rem 0.625rem;
    border-radius: 0.75rem;
  }
}

.countdown-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .countdown-label {
    font-size: 0.6875rem;
  }
}

.countdown-separator {
  color: var(--primary-pink);
  font-size: 1.25rem;
  opacity: 0.6;
  padding-bottom: 1rem;
  animation: pulse-sep 2s ease-in-out infinite;
}

@keyframes pulse-sep {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Video Embed */
.video-wrapper {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

.video-aspect {
  position: relative;
  padding-top: 56.25%;
}

.video-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Credibility grid override — 3 columns on this page */
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 640px) {
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Site footer (Layout component) */
.site-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  padding: 3rem 0;
  margin-top: auto;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.site-footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: var(--primary-pink);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 28rem;
  line-height: 1.6;
}
