/* ===== Blu DIALER - WELCOME PAGE STYLE ===== */

/* Note: Body background styles removed - welcome.php uses inline styles instead
 * This prevents the gradient from interfering with the agent interface (dialer.php)
 */


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

/* Welcome card */
.welcome-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 40px;
  width: 400px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease forwards;
}

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

/* Logo */
.welcome-card img {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Title */
.welcome-card h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Links (Agent, Admin, etc.) */
.welcome-card a {
  display: inline-block;
  background: #ffffff22;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 6px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  width: 80%;
}

.welcome-card a:hover {
  background: #ffffff55;
  transform: scale(1.05);
}

/* Footer text */
.welcome-footer {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 15px;
}

.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}