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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-container {
  background: white;
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

h1 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.checkmark {
  font-size: 3rem;
  color: #10b981;
  font-weight: bold;
}

.status-text {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: 600;
}

footer {
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
