:root {
  --bg: #07111a;
  --panel: rgba(11, 23, 34, 0.92);
  --panel-border: rgba(91, 143, 179, 0.22);
  --text: #eef6fb;
  --muted: #9cb3c6;
  --accent: #5ca4d9;
  --accent-soft: rgba(92, 164, 217, 0.18);
  --success: #5bd8b6;
  --danger: #f06a6a;
  --warning: #ffcd68;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(92, 164, 217, 0.22), transparent 38%),
    linear-gradient(180deg, #08131f 0%, #050a10 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.shell {
  min-height: 100vh;
}

.page-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #8fd6ea;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.feed-panel-header h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.04;
}

.feed-panel-header h2 {
  font-size: 26px;
}

.lede {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.feed-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.feed-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(92, 164, 217, 0.14);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill.is-live {
  background: rgba(91, 216, 182, 0.14);
  color: #dffcf5;
}

.feed-list {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.feed-row {
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr);
  min-height: 122px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feed-row-accent {
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

.feed-row-body {
  padding: 16px 18px;
}

.feed-row-top,
.feed-row-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.feed-row-top {
  margin-bottom: 10px;
}

.feed-title {
  margin: 0;
  font-size: 23px;
  line-height: 1.14;
}

.feed-player,
.feed-detail,
.feed-meta,
.feed-time {
  margin: 0;
  color: var(--muted);
}

.feed-player {
  margin-top: 6px;
  font-weight: 600;
  color: #c6dae7;
}

.feed-detail {
  margin-top: 10px;
  line-height: 1.5;
}

.feed-row-bottom {
  margin-top: 14px;
}

.feed-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f1f7fb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-delta {
  font-size: 18px;
  font-weight: 800;
}

.feed-row-void .feed-badge {
  background: rgba(240, 106, 106, 0.18);
}

.feed-row-bank .feed-badge {
  background: rgba(255, 205, 104, 0.18);
}

.empty-state {
  margin: 0;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 20px, 1120px);
    padding-top: 26px;
  }

  .feed-panel-header,
  .feed-row-top,
  .feed-row-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .feed-title {
    font-size: 20px;
  }
}
