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

:root {
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --accent: #10b981;
  --accent-light: #d1fae5;
  --error: #ef4444;
  --error-light: #fee2e2;
  --suspended: #f59e0b;
  --suspended-light: #fef3c7;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  width: 100%;
  text-align: center;
}

.logo-wrapper { margin-bottom: 1.5rem; }
.logo { height: 64px; width: auto; }

.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.status-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 50%;
}

.status-icon.suspended {
  color: var(--suspended);
  background: var(--suspended-light);
}

.status-icon.error {
  color: var(--error);
  background: var(--error-light);
}

h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-box {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.info-icon { width: 18px; height: 18px; flex-shrink: 0; }

.divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.support { font-size: 0.85rem; }
.support-title { font-weight: 500; margin-bottom: 0.375rem; }
.support-detail { color: var(--text-muted); }
.support-agency { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.25rem; }

.contact-card {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: left;
  font-size: 0.875rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-muted);
}

.contact-icon { width: 18px; height: 18px; flex-shrink: 0; }

.footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer strong { color: var(--accent); font-weight: 600; }
.sep { opacity: 0.3; }

.hidden { display: none !important; }

@media (max-width: 520px) {
  .card { padding: 2rem 1.5rem; }
  h1 { font-size: 1.125rem; }
}
