/* ===========================================================
   Participant + Admin screens — shared styles
   =========================================================== */

/* ---- Browser chrome ---- */
.bf-chrome {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #f4f5f7;
  font-family: var(--font-body);
}
.bf-bar {
  background: #e9ebef;
  border-bottom: 1px solid #d6d9df;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bf-dots { display: flex; gap: 8px; }
.bf-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #d0d3da;
}
.bf-dots span:nth-child(1) { background: #ed6a5e; }
.bf-dots span:nth-child(2) { background: #f5bf4f; }
.bf-dots span:nth-child(3) { background: #61c554; }
.bf-url {
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  border: 1px solid #d6d9df;
}
.bf-lock { font-size: 10px; }
.bf-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}
.bf-label {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
}
.bf-frame {
  flex: 1;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* ---- App shell ---- */
.app-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-soft);
}
.app-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.app-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-header-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}
.app-header-product {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.app-header-product strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.app-header-product span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cic-red);
  font-weight: 700;
}
.app-nav {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.app-nav a {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .15s ease;
}
.app-nav a:hover { background: var(--bg-soft); }
.app-nav a.on { background: var(--ink); color: #fff; }
.app-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-deadline-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.app-deadline-mini span {
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--muted);
}
.app-deadline-mini strong {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--cic-red);
  font-variant-numeric: tabular-nums;
}
.app-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cic-red), var(--cic-blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}
.app-main {
  flex: 1;
  padding: 28px;
  overflow: hidden;
}

/* ---- Auth screens ---- */
.auth-screen {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: 100%;
  height: 100%;
  background: #fff;
}
.auth-narrow {
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  grid-template-columns: 1fr;
}
.auth-narrow-card {
  background: #fff;
  padding: 48px 48px 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.auth-step-icon {
  width: 80px; height: 80px;
  background: rgba(0,94,141,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 24px auto 18px;
}
.auth-narrow-title {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.auth-narrow-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.auth-narrow-sub strong { color: var(--ink); }

.otp-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.otp-cell {
  height: 60px;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}
.otp-active { border-color: var(--cic-blue); box-shadow: 0 0 0 4px rgba(0,94,141,.12); }

.auth-left {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.auth-prod {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.auth-prod strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}
.auth-prod span {
  font-size: 11px;
  color: var(--cic-red);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.auth-title {
  font-size: 44px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.auth-sub {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.auth-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.auth-check input { margin-top: 3px; accent-color: var(--cic-red); }
.auth-check a { color: var(--cic-blue); font-weight: 600; }
.auth-foot {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.auth-foot a { color: var(--cic-red); font-weight: 600; cursor: pointer; }

.auth-right {
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(229, 36, 32, .25), transparent 60%), radial-gradient(ellipse 50% 50% at 90% 30%, rgba(243, 184, 30, .18), transparent 60%), linear-gradient(180deg, #0a0d14 0%, #1d2330 100%);
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.auth-poster {
  position: relative;
  z-index: 1;
}
.auth-poster-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}
.auth-poster h2 {
  font-size: 33px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: #fff;
}
.auth-poster h2 em {
  font-style: italic;
  color: var(--gold);
}
.auth-poster-list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.auth-poster-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.auth-poster-list strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.auth-poster-list span {
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.auth-poster-flags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.auth-poster-foot {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.auth-poster-foot strong { color: #fff; font-family: var(--font-display); }

/* ---- Dashboard ---- */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 24px;
}
.dash-title {
  font-size: 36px;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.dash-sub {
  font-size: 14px;
  color: var(--ink-soft);
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.dash-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.dash-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  opacity: 0.6;
}
.dash-stat-red   { color: var(--cic-red); }
.dash-stat-blue  { color: var(--cic-blue); }
.dash-stat-gold  { color: var(--gold-deep); }
.dash-stat-ink   { color: var(--ink); }
.dash-stat-icon { font-size: 18px; margin-bottom: 12px; }
.dash-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.dash-stat-num sup { font-size: 14px; }
.dash-stat-num small { font-size: 14px; opacity: 0.7; margin-left: 1px; }
.dash-stat-lbl {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}
.dash-stat-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.dash-progress {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.dash-progress > div {
  height: 100%;
  background: currentColor;
  border-radius: 2px;
}

.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
}
.dash-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-card-h h3 { font-size: 16px; letter-spacing: -0.01em; }
.dash-card-h a { font-size: 12px; color: var(--cic-red); font-weight: 600; cursor: pointer; }

.dash-match-list {
  display: grid;
  gap: 4px;
}
.dash-match {
  display: grid;
  grid-template-columns: 56px 1fr auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  font-size: 13px;
}
.dash-match-featured {
  background: rgba(229,36,32,.05);
  border: 1px solid rgba(229,36,32,.15);
}
.dash-match-date {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.dash-match-date strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.dash-match-date span {
  font-size: 11px;
  color: var(--muted);
}
.dash-match-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.dash-match-team strong {
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-match-team-r { justify-content: flex-end; }
.dash-match-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}
.dash-score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  min-width: 16px;
  text-align: center;
}
.dash-score-sep { color: var(--muted); }
.dash-score-empty { color: var(--muted); font-size: 11px; font-weight: 600; }
.dash-match-status {
  display: flex;
  gap: 4px;
  align-items: center;
  min-width: 100px;
  justify-content: flex-end;
}

.dash-top8 {
  display: grid;
  gap: 4px;
}
.dash-top8-row {
  display: grid;
  grid-template-columns: 28px auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.dash-top8-empty {
  background: transparent;
  border: 1px dashed var(--line);
}
.dash-top8-pos {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cic-red);
}
.dash-top8-row:nth-child(1) .dash-top8-pos { color: var(--gold-deep); }
.dash-top8-row:nth-child(2) .dash-top8-pos { color: #94989f; }
.dash-top8-row:nth-child(3) .dash-top8-pos { color: #b07533; }
.dash-top8-name { font-weight: 600; }
.dash-top8-placeholder { color: var(--muted); font-style: italic; font-size: 12px; }
.dash-top8-pts {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--cic-blue);
}

/* ---- Predict matches grid ---- */
.predict-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  gap: 18px;
}
.predict-tabs {
  display: flex;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
}
.predict-tab {
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.predict-tab-on { background: var(--cic-red); color: #fff; }

.predict-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.predict-filters-left {
  display: flex;
  gap: 8px;
  align-items: center;
}
.predict-filters-left .chip {
  cursor: pointer;
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink-soft);
}
.predict-filters-right {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.predict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.match-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  position: relative;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.match-card:hover { border-color: var(--cic-blue); }
.match-done { border-color: rgba(15,123,58,.3); background: linear-gradient(180deg, rgba(15,123,58,.02), #fff); }
.match-featured {
  border-color: var(--cic-red);
  box-shadow: 0 0 0 1px var(--cic-red), 0 14px 28px -16px rgba(229,36,32,.25);
}
.match-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
}
.match-grp { color: var(--ink-soft); }
.match-star { color: var(--cic-red); font-size: 14px; }
.match-card-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.match-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.match-side-r { align-items: flex-end; text-align: right; }
.match-flag { font-size: 28px; line-height: 1; }
.match-side strong {
  font-size: 13px;
  font-weight: 700;
}
.match-score-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.match-score-input {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  background: var(--bg-soft);
  transition: all .15s ease;
}
.match-score-input:focus { outline: none; border-color: var(--cic-red); background: #fff; box-shadow: 0 0 0 4px rgba(229,36,32,.1); }
.match-score-sep { color: var(--muted); font-weight: 700; }
.match-card-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.match-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.match-status-ok { color: var(--pitch-green); }
.match-status-pending { color: var(--muted); }

.predict-savebar {
  position: sticky;
  bottom: 0;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,.1);
}
.predict-savebar strong { display: block; font-family: var(--font-display); font-size: 13px; }
.predict-savebar span { font-size: 12px; color: rgba(255,255,255,.6); }

/* ---- Top 8 layout ---- */
.top8-progress {
  text-align: right;
}
.top8-progress-num strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--cic-red);
}
.top8-progress-num span {
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}
.top8-progress-pts {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.top8-progress-pts strong { color: var(--cic-blue); font-family: var(--font-display); }

.top8-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.top8-section-h {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

.top8-podium {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.podium-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 12px;
  align-items: end;
}
.podium-step {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 18px 12px 18px;
  text-align: center;
  position: relative;
  border-top: 4px solid;
}
.podium-1 { padding-top: 28px; min-height: 200px; border-top-color: var(--gold); background: linear-gradient(180deg, #fff8e0 0%, #fff 100%); }
.podium-2 { min-height: 160px; border-top-color: #c5c8ce; }
.podium-3 { min-height: 140px; border-top-color: #c89860; }
.podium-flag { font-size: 44px; margin-bottom: 6px; line-height: 1; }
.podium-step strong { font-size: 14px; font-family: var(--font-display); display: block; }
.podium-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}
.podium-gold { background: var(--gold); color: #fff; }
.podium-silver { background: #c5c8ce; color: #fff; }
.podium-bronze { background: #c89860; color: #fff; }
.podium-pts {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--cic-blue);
  margin-top: 6px;
}
.podium-crown {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cic-red);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(229,36,32,.4);
}

.top8-positions { margin-top: 24px; }
.top8-list { display: grid; gap: 6px; }
.top8-row {
  display: grid;
  grid-template-columns: 32px 110px auto 1fr auto 60px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.top8-empty {
  background: transparent;
  border: 1.5px dashed var(--line);
  grid-template-columns: 32px 110px 1fr 60px;
}
.top8-pos {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cic-red);
  font-size: 16px;
}
.top8-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--muted);
}
.top8-name { font-weight: 600; }
.top8-change {
  font-size: 11px;
  color: var(--cic-blue);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--r-xs);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}
.top8-pick {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.top8-pts {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--cic-blue);
}

.top8-picker {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  align-self: start;
  position: sticky;
  top: 0;
}
.top8-picker-h {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.top8-search {
  height: 36px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  font-size: 13px;
  background: var(--bg-soft);
}
.top8-search:focus { outline: none; border-color: var(--cic-blue); background: #fff; }
.top8-teams {
  display: grid;
  gap: 4px;
  max-height: 520px;
  overflow-y: auto;
}
.top8-team {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  cursor: pointer;
  transition: background .12s ease;
}
.top8-team:hover { background: var(--bg-soft); }
.top8-team-picked {
  background: rgba(229,36,32,.08);
  color: var(--cic-red);
  font-weight: 700;
}
.top8-team-picked:hover { background: rgba(229,36,32,.12); }
.top8-team-name { font-weight: 600; }
.top8-team-pos {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cic-red);
  background: #fff;
  border-radius: var(--r-xs);
  padding: 2px 6px;
  font-size: 11px;
}
.top8-team-featured .top8-team-name::after { content: " ★"; color: var(--cic-red); }
.top8-team-fav { color: var(--cic-red); }

/* ---- Locked banner ---- */
.locked-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ink) 0%, #2a2f3d 100%);
  color: #fff;
  border-radius: var(--r-lg);
}
.locked-banner-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
}
.locked-banner-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--cic-red);
  margin-bottom: 6px;
}
.locked-banner h2 {
  font-size: 22px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.locked-banner p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
