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

:root {
  --brand-blue: #29ABE2;
  --brand-dark: #0a1628;
  --brand-dark-mid: #0f2040;
  --brand-card: rgba(255, 255, 255, 0.04);
  --brand-border: rgba(41, 171, 226, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #8ba4bc;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background-color: var(--brand-dark);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
}

/* Subtle radial gradient glow behind content */
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(41, 171, 226, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* Logo */
.logo img {
  height: 42px;
  width: auto;
}


/* Card */
.card {
  width: 100%;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
}

.card h1 {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card h1 span {
  color: var(--brand-blue);
}

.card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Status pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(41, 171, 226, 0.1);
  border: 1px solid rgba(41, 171, 226, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

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

/* Divider */
.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
  border-radius: 2px;
  margin: 1.25rem auto;
}

/* Status updates */
.updates-section {
  width: 100%;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}

.update-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
}

.update-item--latest {
  background: rgba(41, 171, 226, 0.05);
}

.update-time {
  flex-shrink: 0;
  color: var(--brand-blue);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.update-msg {
  color: var(--text-secondary);
  line-height: 1.5;
}

.updates-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.updates-section.is-expanded .updates-more {
  max-height: 240px;
  overflow-y: auto;
}

.updates-list {
  list-style: none;
}

.updates-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  border-top: 1px solid var(--brand-border);
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  color: var(--brand-blue);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s;
}

.updates-toggle:hover {
  background: rgba(41, 171, 226, 0.06);
}

.updates-toggle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.updates-section.is-expanded .updates-toggle svg {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.footer a {
  color: var(--brand-blue);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

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