/* ==========================================
   COMING SOON OVERLAY
   BroJack Agent #9 - October 2025
   Glassmorphism overlay for features in development
   ========================================== */

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  
  /* Glassmorphism effect */
  background: rgba(0, 9, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Smooth entrance animation */
  animation: fadeInOverlay 0.6s ease-out;
  
  /* Card overlays: TRUE CENTERING - no overflow! */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%; /* Percentage-based padding */
  
  /* Border for premium look */
  border-radius: 24px;
}

/* Full page variant (Calls, Games, etc) - Top aligned */
.coming-soon-overlay.full-page {
  align-items: flex-start;
  padding-top: 80px;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0; /* No border radius for full pages */
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(20px) saturate(1.5);
  }
}

/* Content container */
.coming-soon-content {
  text-align: center;
  padding: 60px 40px;
  max-width: 500px;
  
  /* Inner glass effect */
  background: rgba(28, 35, 56, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Soft glow */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  /* Entrance animation */
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Rocket icon */
.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Glow effect */
  box-shadow: 
    0 0 0 8px rgba(102, 126, 234, 0.2),
    0 0 40px rgba(102, 126, 234, 0.4);
  
  /* Pulse animation */
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 0 8px rgba(102, 126, 234, 0.2),
      0 0 40px rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 0 12px rgba(102, 126, 234, 0.3),
      0 0 60px rgba(102, 126, 234, 0.6);
  }
}

.coming-soon-icon i {
  font-size: 36px;
  color: #FFFFFF;
  animation: floatIcon 3s ease-in-out infinite;
}

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

/* Title */
.coming-soon-title {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  
  /* Gradient text */
  background: linear-gradient(135deg, #FFFFFF 0%, #A4A9B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Message */
.coming-soon-message {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #A4A9B6;
  margin: 0 0 32px 0;
}

.coming-soon-message strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Status indicator */
.coming-soon-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 184, 108, 0.1);
  border: 1px solid rgba(255, 184, 108, 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFB86C;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #FFB86C;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Notify button */
.btn-notify-me {
  padding: 14px 32px;
  width: 100%;
  background: linear-gradient(135deg, #555DFF 0%, #667eea 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  /* Glow effect */
  box-shadow: 
    0 4px 16px rgba(85, 93, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-notify-me:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 6px 24px rgba(85, 93, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-notify-me:active {
  transform: translateY(0) scale(0.98);
}

.btn-notify-me i {
  font-size: 16px;
}

/* NEW: Simplified content for card overlays */
.coming-soon-content-simple {
  text-align: center;
  /* No background box - just content */
}

.coming-soon-icon-simple {
  width: clamp(48px, 12vw, 64px);
  height: clamp(48px, 12vw, 64px);
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 8px rgba(102, 126, 234, 0.2),
    0 0 40px rgba(102, 126, 234, 0.4);
}

.coming-soon-icon-simple img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.coming-soon-title-simple {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(18px, 4vw, 24px); /* Responsive */
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .coming-soon-overlay {
    padding: 5%; /* Keep percentage-based */
  }
  
  .coming-soon-content {
    padding: 40px 24px;
    max-width: 90%;
  }
  
  .coming-soon-icon {
    width: 64px;
    height: 64px;
  }
  
  .coming-soon-icon i {
    font-size: 28px;
  }
  
  .coming-soon-title {
    font-size: 28px;
  }
  
  .coming-soon-message {
    font-size: 14px;
  }
}

