/* Welcome Splash Screen Styles */
/* Modern animated gradient for streaming product */

.welcome-splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in, gradientAnimation 15s ease infinite;
}

.welcome-splash-container {
  max-width: 800px;
  width: 90%;
  text-align: center;
  color: white;
}

.welcome-splash-content {
  animation: slideUp 0.8s ease-out;
}

/* Icon Animation */
.welcome-icon {
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.welcome-icon .feather-xl {
  width: 80px;
  height: 80px;
  color: white;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Greeting */
.welcome-greeting {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 1s ease-out 0.2s both;
}

/* Welcome Message */
.welcome-message {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeInScale 1s ease-out 0.4s both;
}

.welcome-message i {
  width: 24px;
  height: 24px;
}

/* Quote Container */
.welcome-quote-container {
  margin: 2.5rem auto;
  max-width: 600px;
  animation: fadeInScale 1s ease-out 0.6s both;
}

.welcome-quote {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
}

.welcome-quote .quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.welcome-quote blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: white;
}

.welcome-quote cite {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 600;
}

/* Actions */
.welcome-actions {
  margin-top: 2.5rem;
  animation: fadeInScale 1s ease-out 0.8s both;
}

.welcome-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #e73c7e;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #23a6d5;
}

.welcome-continue i {
  width: 20px;
  height: 20px;
}

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

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .welcome-greeting {
    font-size: 2rem;
  }

  .welcome-message {
    font-size: 1rem;
  }

  .welcome-quote blockquote {
    font-size: 1rem;
  }

  .welcome-quote {
    padding: 1.5rem;
  }

  .welcome-icon .feather-xl {
    width: 60px;
    height: 60px;
  }
}
