:root {
  color-scheme: light dark;
  --bg: #0f1115;
  --card: #171a21;
  --text: #f7f2ea;
  --muted: #b7aea2;
  --accent: #d97757;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(217, 119, 87, 0.18), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.status-wall {
  display: grid;
  gap: 1rem;
  grid-auto-columns: minmax(42rem, 86vw);
  grid-auto-flow: column;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem;
  scroll-padding: 1rem;
  scroll-snap-type: x mandatory;
}

.status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  min-width: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.card-label {
  background: rgba(15, 17, 21, 0.84);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  left: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.72rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.9rem;
  z-index: 3;
}

iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.blocked iframe {
  opacity: 0;
}

.blocked-overlay {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(217, 119, 87, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(23, 26, 33, 0.98), rgba(15, 17, 21, 0.98));
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.blocked-overlay h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.blocked-overlay p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.3rem;
  max-width: 34rem;
}

.blocked-overlay a {
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-weight: 850;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
}

.status-wall::-webkit-scrollbar {
  height: 0.8rem;
}

.status-wall::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.status-wall::-webkit-scrollbar-thumb {
  background: rgba(217, 119, 87, 0.72);
  border-radius: 999px;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .status-wall {
    grid-auto-columns: minmax(19rem, 92vw);
    min-height: 100%;
    overflow-y: auto;
  }
}
