:root {
  --color-primary: #E0144C;
  --color-secondary: #FF5858;
  --bg-color: #0d0d12;
  --text-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  filter: blur(100px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: var(--color-primary);
  top: -15%;
  left: -10%;
  animation-duration: 12s;
}

.blob-2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: var(--color-secondary);
  bottom: -15%;
  right: -10%;
  animation-duration: 15s;
  animation-direction: alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 50px) scale(1.1); }
  100% { transform: translate(-40px, 90px) scale(0.9); }
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  max-width: 90%;
  width: 500px;
}

.logo-container img {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 2.5rem;
}

.loader {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
  background-color: var(--color-primary);
}
.dot:nth-child(2) {
  animation-delay: -0.16s;
  background-color: #f03652;
}

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .content {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .logo-container img {
    max-width: 90px;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
  }

  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .blob-1 {
    width: 80vw;
    height: 80vw;
  }

  .blob-2 {
    width: 70vw;
    height: 70vw;
  }
}