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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background-color: white;
  border-radius: 12px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.icon {
  font-size: 64px;
  margin-bottom: 24px;
  color: #6366f1;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.message {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 32px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f0fdf4;
  color: #16a34a;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #16a34a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

@media (max-width: 640px) {
  body {
    padding: 16px;
    min-height: 100vh;
    height: auto;
  }
  
  .container {
    padding: 32px 24px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 18px;
  }

  .icon {
    font-size: 48px;
  }
  
  .message {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .status {
    font-size: 13px;
    margin-bottom: 20px;
  }
}