:root {
  --violet-1: #6a46f3;
  --violet-2: #c325b4;
  --blue-1: #0fc5de;
  --blue-2: #100458;
  --white: #f8f8fa;
  --black: #1a181b;
  --gray: #6c757d;
  --font-stack: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-stack);
  background: linear-gradient(135deg, var(--blue-2) 0%, var(--black) 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.logo img {
  height: 60px;
  width: auto;
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--violet-1), var(--violet-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(248, 248, 250, 0.8);
  margin-bottom: 2rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(248, 248, 250, 0.7);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  color: rgba(248, 248, 250, 0.3);
}

@media (max-width: 480px) {
  .logo img {
    height: 45px;
  }
  h1 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
}
