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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

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

.icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.message {
  font-size: 1.2rem;
  color: #a0aec0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background: #f6ad55;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

a {
  color: #63b3ed;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #90cdf4;
  text-decoration: underline;
}

a:visited {
  color: #b794f4;
}

@media (max-width: 480px) {
  .container {
    padding: 24px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .icon {
    font-size: 60px;
  }
}
