/* General page setup */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #f5f5f5, #d8f3dc);
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
}

/* Container for the content */
.container {
  animation: fadeIn 1.5s ease-in-out;
}

/* Logo styling */
.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Main title */
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

/* Tagline */
.tagline {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555;
}

/* Loading dots animation */
.loading {
  font-size: 2em;
  height: 1em;
}

.loading:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  text-align: left;
  animation: dots 1s steps(4, end) infinite;
}

/* Affiliate loading text */
.affiliate-text {
  font-size: 1.1em;
  margin-top: 10px;
  color: #666;
  font-style: italic;
}

/* Keyframes for dots animation */
@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* Fade-in effect for the container */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
