/* 
 * Waiting Room Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout, spacing, and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Waiting room container - brand gradient background */
.waiting-room-container {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Waiting room card - brand-specific backdrop blur and animations */
.waiting-room-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.waiting-room-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Waiting room icon - brand-specific animation */
.waiting-room-icon {
  font-size: 4rem;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  display: inline-block;
  position: relative;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Waiting room title - brand-specific styling */
.waiting-room-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

/* Waiting room subtitle - brand-specific styling */
.waiting-room-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Countdown badge - brand-specific styling */
.waiting-room-countdown {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.75rem;
  display: inline-block;
  min-width: 3ch;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin: 0 0.25rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

/* Progress bar - brand-specific gradient and shimmer */
.waiting-room-progress-container {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) inset;
  position: relative;
  z-index: 1;
}

.waiting-room-progress-bar {
  background: linear-gradient(90deg, #006D8F 0%, #AA00CC 50%, #F3CA40 100%);
  border-radius: 12px;
  transition: width 1s linear;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 109, 143, 0.4);
}

.waiting-room-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Waiting room message - brand-specific styling */
.waiting-room-message {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .waiting-room-container {
    min-height: calc(100vh - 120px);
    padding: 1.5rem 1rem;
  }

  .waiting-room-card {
    border-radius: 24px;
    padding: 3rem 2rem !important;
  }

  .waiting-room-icon {
    font-size: 3rem;
    margin-bottom: 1rem !important;
  }

  .waiting-room-title {
    font-size: 2rem;
    margin-bottom: 1rem !important;
  }

  .waiting-room-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem !important;
  }

  .waiting-room-countdown {
    font-size: 1.5rem;
  }

  .waiting-room-message {
    font-size: 1rem;
  }
}
