:root {
  color-scheme: dark;
  --bg: #111318;
  --panel: #1a1d24;
  --panel-strong: #23262f;
  --text: #f4f7fb;
  --muted: #aeb6c3;
  --line: #343844;
  --accent: #d94848;
  --accent-dark: #9d2d32;
  --danger: #e45656;
  --warning: #f7b955;
  --success: #54d990;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 72, 72, 0.09), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(157, 45, 50, 0.10), transparent 30rem),
    linear-gradient(135deg, #111318 0%, #1b1c23 54%, #15171d 100%);
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 19, 24, 0.82);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand:visited,
.brand:hover,
.brand:focus-visible {
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  filter: brightness(1.05);
}

.brand .eyebrow {
  color: var(--accent);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: rgba(217, 72, 72, 0.12);
  border: 1px solid rgba(217, 72, 72, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-logo {
  width: 2rem;
  height: 2rem;
}

.site-logo.large {
  width: 4.1rem;
  height: 4.1rem;
}

.logo-shield {
  fill: rgba(217, 72, 72, 0.18);
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linejoin: round;
}

.logo-mark {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
}

.eyebrow {
  margin: 0 0 0.2rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
}

.top-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-menu {
  position: relative;
}

.nav-menu .top-actions {
  display: flex;
}

.nav-menu summary {
  display: none;
  list-style: none;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  padding: 0.72rem 1rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-menu[open] summary::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.top-actions a,
button {
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  padding: 0.72rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-actions a:hover,
button:hover,
.primary-button:hover,
.ghost-link:hover,
.profile-actions a:hover,
.verified-user-actions a:hover,
.verified-user-actions button:hover,
.section-link:hover,
.site-footer a:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(217, 72, 72, 0.20);
}

.top-actions a:first-child {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.top-actions a[aria-current="page"] {
  color: #ffffff;
  background: rgba(217, 72, 72, 0.24);
  border: 1px solid rgba(217, 72, 72, 0.42);
}

.primary-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  color: #ffffff;
  background: var(--accent);
}

.ghost-link {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

.helper-copy,
.list-count {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.6rem 0.85rem;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) auto;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem auto 0;
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.site-footer nav {
  width: min(100%, 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.site-footer a {
  flex: 1 1 clamp(6.25rem, 20vw, 9.5rem);
  min-width: 0;
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  color: var(--text);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
  white-space: normal;
  text-align: center;
}

.site-footer a:hover {
  color: #ffffff;
  background: rgba(221, 72, 80, 0.12);
}

.site-footer .footer-icon-link {
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid var(--line);
}

.site-footer svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.site-footer .footer-icon-link:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.about-hero,
.about-section {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero h2 {
  max-width: 780px;
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.about-hero p:not(.eyebrow),
.about-section p {
  max-width: 820px;
  color: #c8d7f2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-section h3 {
  color: #ffffff;
  font-size: 1.4rem;
}

.about-section a {
  color: #ff6b72;
  font-weight: 900;
  text-decoration: none;
}

.about-grid {
  width: min(980px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto 1rem;
}

.about-grid article {
  min-width: 0;
  padding: 1.25rem;
  background: rgba(26, 30, 38, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-grid h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.about-grid p {
  color: #c8d7f2;
  line-height: 1.65;
}

.verification-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1rem;
  align-items: stretch;
}

.verified-directory-hero {
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.verified-directory-hero p:last-child {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.verified-users-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.verified-search-panel {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.verified-search-panel label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.verified-user-card {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.verified-user-card:hover,
.verified-user-card:focus-visible {
  border-color: rgba(217, 72, 72, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.verified-user-avatar {
  width: 4.25rem;
  height: 4.25rem;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101319;
}

.verified-user-card h3 {
  margin-bottom: 0;
}

.verified-user-card dd,
.verified-user-card dt {
  overflow-wrap: anywhere;
}

.verified-user-card dl {
  align-content: start;
  gap: 0.45rem;
  min-height: 10.25rem;
}

.verified-user-card dt,
.verified-user-card dd {
  justify-self: start;
  text-align: left;
}

.verified-user-card dt {
  margin-top: 0;
}

.verified-user-card dd {
  margin: -0.18rem 0 0;
}

.verified-user-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-self: start;
  align-self: end;
  margin-top: auto;
}

.verified-user-actions a,
.verified-user-actions button {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.verified-user-actions button {
  width: auto;
  padding: 0 0.75rem;
}

.verified-user-actions svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.verification-copy,
.verification-card,
.requirement-card {
  background: rgba(26, 29, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.verification-copy {
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.verification-copy h2 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.verification-copy p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.verification-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.verification-icon {
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  background: rgba(217, 72, 72, 0.08);
  border: 1px solid rgba(217, 72, 72, 0.22);
  border-radius: 8px;
}

.verification-card p,
.requirement-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.verify-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verify-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--text);
  line-height: 1.4;
}

.verify-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.52rem;
  height: 0.9rem;
  margin-top: 0.08rem;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.verification-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.requirement-card {
  padding: 1rem;
}

.requirement-card h3 {
  margin-bottom: 0.5rem;
}

.workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.search-panel,
.stats,
.report-form,
.report-copy {
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.featured-streams {
  position: fixed;
  top: clamp(9rem, 14vh, 11rem);
  left: 0.75rem;
  z-index: 30;
  display: grid;
  gap: 0.5rem;
  width: 9.75rem;
  max-width: calc(100vw - 2rem);
  padding: 0.65rem;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-streams[hidden] {
  display: none;
}

.featured-streams-head {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: space-between;
}

.featured-streams-title {
  display: flex;
  min-width: 0;
  gap: 0.4rem;
  align-items: center;
}

.featured-streams h2 {
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.2;
}

.featured-streams-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.68rem;
  line-height: 1;
}

.featured-streams-close:hover,
.featured-streams-close:focus-visible {
  color: #ffffff;
  background: rgba(217, 72, 72, 0.18);
  border-color: rgba(217, 72, 72, 0.48);
  box-shadow: none;
  transform: none;
}

.live-dot {
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(217, 72, 72, 0.55);
  animation: livePulse 1.6s ease-out infinite;
}

.featured-streams-list {
  display: grid;
  gap: 0.45rem;
}

.featured-stream {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  text-decoration: none;
  padding: 0.42rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-stream:hover,
.featured-stream:focus-visible {
  color: var(--text);
  border-color: rgba(217, 72, 72, 0.48);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.featured-stream-media {
  display: grid;
  justify-items: center;
  align-self: center;
  gap: 0.18rem;
  min-width: 0;
}

.featured-stream img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: cover;
  border-radius: 8px;
  background: var(--panel-strong);
}

.featured-stream-body,
.featured-stream-name,
.featured-stream-title,
.featured-stream-meta {
  min-width: 0;
}

.featured-stream-body {
  display: grid;
  gap: 0.08rem;
  align-content: center;
  min-height: 3.25rem;
  overflow: hidden;
}

.featured-stream-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
}

.featured-stream-name strong,
.featured-stream-title,
.featured-stream-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-stream-name strong {
  display: block;
  max-width: 100%;
  color: #ffffff;
  font-size: 0.78rem;
}

.live-pill {
  display: block;
  max-width: 2rem;
  padding: 0.08rem 0.18rem;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.46rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.featured-stream-title {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.featured-stream-meta {
  display: block;
  color: var(--muted-strong);
  font-size: 0.64rem;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 72, 72, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(217, 72, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 72, 72, 0);
  }
}

@media (max-width: 1500px) {
  .featured-streams {
    display: none;
  }
}

.search-panel-heading h2 {
  margin-bottom: 0;
}

.search-form label,
.report-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 10rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 72, 72, 0.16);
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.filters label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filters input {
  width: auto;
}

.stats {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stats h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
}

.stat-card {
  display: grid;
  align-content: center;
  color: var(--text);
  text-decoration: none;
  padding: 1rem;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:visited {
  color: var(--text);
}

.stat-card:hover,
.stat-card:focus-visible {
  color: var(--text);
  border-color: rgba(217, 72, 72, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.stat-card.total {
  background: linear-gradient(135deg, rgba(217, 72, 72, 0.18), var(--panel-strong));
}

.stats span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.stats p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-page main {
  width: min(1240px, calc(100% - 2rem));
  padding: 2rem 0 4rem;
}

.admin-console {
  display: grid;
  gap: 1rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(16rem, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-sidebar,
.admin-workspace {
  display: grid;
  gap: 1rem;
}

.admin-panel,
.application-card {
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
}

.admin-panel {
  display: grid;
  gap: 0.75rem;
}

.admin-panel button {
  min-height: 3rem;
}

.admin-panel h2 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-status-panel {
  align-content: start;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(16, 19, 25, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-tabs button {
  min-height: 2.75rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
}

.admin-tabs button.active {
  color: var(--text);
  background: rgba(217, 72, 72, 0.18);
  border-color: rgba(217, 72, 72, 0.38);
}

.admin-tabs button:disabled,
.admin-tabs button.permission-disabled,
button.permission-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: grid;
  gap: 1rem;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(15rem, 1.4fr) repeat(4, minmax(8rem, 0.75fr)) auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.admin-toolbar button {
  min-height: 3rem;
}

.applications {
  display: grid;
  gap: 1rem;
}

.admin-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 1rem;
  color: var(--muted);
  font-weight: 800;
  background: rgba(26, 30, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.admin-spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: adminSpin 0.8s linear infinite;
}

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

.application-card {
  display: grid;
  gap: 0.85rem;
}

.application-card.verified-report {
  border-color: rgba(84, 217, 144, 0.42);
}

.application-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.application-card p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.application-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.review-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.admin-card-head h2 {
  overflow-wrap: anywhere;
}

.admin-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge.verified {
  background: rgba(84, 217, 144, 0.14);
  color: #a9f4c9;
}

.admin-note-field {
  min-height: 4.75rem;
}

.copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.copy-button {
  min-height: 2rem;
  padding: 0.35rem 0.55rem;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.admin-evidence-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.admin-evidence-preview a,
.admin-evidence-preview span {
  display: grid;
  gap: 0.45rem;
  padding: 0.6rem;
  color: var(--muted);
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.admin-evidence-preview img,
.admin-evidence-preview video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 8px;
  background: #0b0d12;
}

.admin-detail-section {
  display: grid;
  gap: 0.75rem;
}

.admin-account-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-account-form {
  position: sticky;
  top: 1rem;
}

.token-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.permission-grid {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.permission-grid legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.permission-grid label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}

.admin-account-list {
  display: grid;
  gap: 0.75rem;
}

.admin-account {
  display: grid;
  gap: 0.65rem;
  padding: 0.8rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-account > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.admin-account h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.online-dot {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  background: #54d990;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(84, 217, 144, 0.16);
}

.admin-account p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-account.compact {
  padding: 0.65rem;
}

.admin-account.compact h3 {
  font-size: 0.95rem;
}

.account-permission-editor {
  display: grid;
  gap: 0.75rem;
}

.account-permission-editor .ghost-button {
  justify-self: start;
}

.danger-button {
  background: var(--danger);
  color: white;
}

.results-section,
.steam-section,
.report-section {
  margin-top: 1rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.ghost-button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.compact-grid {
  margin-top: 0;
}

.reports-list {
  display: grid;
  gap: 0.75rem;
}

.report-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 150px) minmax(0, 260px) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}

.report-row:hover,
.report-row:focus-visible {
  border-color: rgba(217, 72, 72, 0.48);
  outline: none;
}

.report-row .card-head {
  align-items: flex-start;
  flex-direction: column;
}

.report-row h3,
.report-row dd,
.report-row .description {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pagination button {
  width: auto;
  min-width: 2.45rem;
  padding: 0.62rem 0.8rem;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.pagination button.active,
.pagination button:hover:not(:disabled) {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pagination span {
  color: var(--muted);
  font-weight: 900;
}

.report-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 0.85rem;
  align-content: stretch;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover,
.report-card:focus-visible,
article[role="button"]:hover,
article[role="button"]:focus-visible {
  border-color: rgba(217, 72, 72, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.card-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-head-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.14);
  color: #ffb4b4;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.badge.cheating {
  background: rgba(247, 185, 85, 0.14);
  color: #ffd99c;
}

.badge.trolling {
  background: rgba(136, 113, 255, 0.16);
  color: #c8bdff;
}

.badge.toxicity {
  background: rgba(228, 86, 86, 0.18);
  color: #ffb4b4;
}

.date,
.report-card dt,
.report-card dd,
.description,
.media-list {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.report-card h3 {
  margin-bottom: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.report-profile-head,
.report-detail-profile {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
}

.report-profile-head > div,
.report-detail-profile > div {
  min-width: 0;
}

.report-profile-avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #101319;
  border: 1px solid var(--line);
}

.report-profile-meta {
  min-height: 2.3rem;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-card .report-profile-head {
  min-height: 4.15rem;
}

.report-card .report-profile-head h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-detail-profile .report-profile-avatar {
  width: 64px;
  height: 64px;
}

dl {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.report-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
}

.report-card dd {
  margin: -0.25rem 0 0;
  word-break: break-word;
}

.description {
  margin-bottom: 0;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 4.65em;
}

.report-user-statement {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  margin-top: auto;
}

.report-user-statement-label {
  color: #b8c4d7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-user-statement .description {
  margin-top: 0;
}

.report-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.report-title-row h2 {
  margin-bottom: 0;
}

.media-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.media-list span,
.media-list a {
  max-width: 100%;
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.media-list a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.report-dialog {
  width: min(920px, calc(100% - 2rem));
  max-height: min(86vh, 920px);
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.report-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
}

.report-detail {
  min-width: 0;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #171a21;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.report-detail-head {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-brand-head {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: center;
}

.dialog-brand-head .brand-mark {
  width: clamp(3.5rem, 7vw, 4.6rem);
  height: clamp(3.5rem, 7vw, 4.6rem);
}

.dialog-brand-head .site-logo {
  width: 70%;
  height: 70%;
}

.dialog-brand-head > div:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.dialog-brand-head .badge {
  width: fit-content;
  min-height: 1.7rem;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.55rem;
}

.report-detail-head h2 {
  margin: 0 0 0.25rem;
  overflow-wrap: anywhere;
}

.report-detail-head p,
.report-detail-description {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-button {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
}

.report-detail-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-detail-meta dt,
.report-detail-meta dd {
  overflow-wrap: anywhere;
}

.report-detail h3 {
  margin-bottom: 0.5rem;
}

.report-detail-description {
  white-space: pre-wrap;
  line-height: 1.65;
}

.report-source-note {
  margin: -0.25rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.leetify-dialog .report-detail {
  max-height: min(86vh, 920px);
  overflow-y: auto;
  overflow-x: hidden;
}

.leetify-dialog section,
.verified-profile-modal {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(16, 19, 25, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.leetify-dialog section h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
}

.verified-profile-modal-main {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.verified-profile-modal-main h3 {
  margin: 0.5rem 0;
}

.verified-profile-modal-main dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leetify-summary,
.leetify-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.leetify-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(248, 73, 130, 0.13), rgba(16, 19, 25, 0.96));
  border: 1px solid rgba(248, 73, 130, 0.28);
  border-radius: 8px;
}

.leetify-attribution.profile-attribution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 220px);
  align-items: center;
  justify-content: stretch;
  column-gap: clamp(1rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(248, 73, 130, 0.12), rgba(18, 22, 31, 0.98));
}

.leetify-attribution.csrep-attribution {
  background: linear-gradient(135deg, rgba(5, 233, 154, 0.12), rgba(18, 22, 31, 0.98));
  border-color: rgba(5, 233, 154, 0.28);
}

.csrep-attribution {
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
}

.leetify-attribution.profile-attribution p {
  width: min(100%, 34rem);
}

.leetify-attribution-actions {
  --leetify-action-width: min(220px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  width: 100%;
  margin-left: auto;
  justify-self: end;
}

.leetify-attribution img {
  display: block;
  width: var(--leetify-action-width, min(180px, 100%));
  height: auto;
  object-fit: contain;
}

.csrep-attribution img {
  --leetify-action-width: min(280px, 100%);
  max-height: 5rem;
}

.leetify-attribution p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.leetify-view-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--leetify-action-width, auto);
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  color: #ffffff;
  background: #f84982;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.csrep-view-link {
  background: #05c982;
}

.source-tabs-shell {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.source-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.35rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-tab {
  min-height: 2.45rem;
  padding: 0.55rem 0.95rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.source-tab[aria-selected="true"] {
  color: #ffffff;
  background: rgba(217, 72, 72, 0.22);
  border-color: rgba(217, 72, 72, 0.42);
}

.source-tab:hover,
.source-tab:focus-visible {
  color: #ffffff;
  border-color: rgba(217, 72, 72, 0.42);
  outline: none;
}

.source-tab-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.source-tab-panel[hidden] {
  display: none;
}

.source-empty-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.leetify-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leetify-metric,
.leetify-match {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem;
  background: linear-gradient(180deg, #151922, #101319);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.leetify-metric span,
.leetify-match span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.leetify-metric strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.leetify-match strong {
  color: #ffffff;
  line-height: 1.35;
}

.leetify-match span {
  text-transform: none;
  line-height: 1.45;
}

.leetify-match-list {
  display: grid;
  gap: 0.6rem;
}

.leetify-dialog {
  width: min(1180px, calc(100% - 2rem));
}

.leetify-dialog .report-detail {
  gap: 1rem;
}

.leetify-dialog #leetifyDialogBody {
  min-width: 0;
}

.profile-dashboard {
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 1rem;
}

.leetify-dialog .profile-dashboard-section,
.leetify-dialog .profile-modal-hero {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: linear-gradient(180deg, rgba(18, 22, 31, 0.98), rgba(13, 16, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.leetify-dialog .profile-modal-hero {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(178, 42, 50, 0.16), rgba(16, 19, 25, 0.98) 45%),
    #101319;
  border-color: rgba(221, 72, 80, 0.22);
}

.profile-modal-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-modal-avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-modal-identity h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  overflow-wrap: anywhere;
}

.profile-modal-identity p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.profile-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-external-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.profile-icon-action {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  text-decoration: none;
}

.profile-report-action {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.6rem 0.85rem;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.profile-icon-action:hover,
.profile-report-action:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.profile-icon-action svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.profile-modal-actions img {
  display: block;
  width: min(170px, 28vw);
  height: auto;
}

.source-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.55rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.source-chip.active {
  color: #ffffff;
  background: rgba(221, 72, 80, 0.2);
  border-color: rgba(221, 72, 80, 0.42);
}

.profile-modal-identity .source-chip + .source-chip {
  margin-left: 0.35rem;
}

.profile-metric-grid,
.profile-progress-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 0.75rem;
}

.profile-metric-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
}

.profile-metric {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.25rem;
  padding: 0.95rem;
  background: #121721;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-metric span,
.profile-progress-head span {
  color: #b8c4d7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.profile-metric strong {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.profile-metric small {
  color: var(--muted);
  line-height: 1.4;
}

.profile-metric.premier-rating {
  border-color: color-mix(in srgb, var(--premier-color, #8f98a8) 54%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--premier-color, #8f98a8) 22%, transparent), rgba(18, 23, 33, 0.94) 48%),
    #121721;
}

.profile-metric.premier-rating strong {
  color: var(--premier-color, #ffffff);
}

.combined-rank-card {
  gap: 0.5rem;
}

.combined-rank-values {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.combined-rank-values strong {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.combined-rank-values strong:first-child {
  color: #ffffff;
}

.profile-metric.premier-gray {
  --premier-color: #9aa3af;
}

.profile-metric.premier-light-blue {
  --premier-color: #6fc7ff;
}

.profile-metric.premier-blue {
  --premier-color: #3f8cff;
}

.profile-metric.premier-purple {
  --premier-color: #a56cff;
}

.profile-metric.premier-pink {
  --premier-color: #ff5aa5;
}

.profile-metric.premier-red {
  --premier-color: #ff4f55;
}

.profile-metric.premier-yellow {
  --premier-color: #ffd84a;
}

.profile-progress-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}

.profile-progress {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
  padding: 0.7rem 0;
}

.profile-progress-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: baseline;
}

.profile-progress-head strong {
  color: #ffffff;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.profile-progress-track {
  height: 0.45rem;
  overflow: hidden;
  background: #272d39;
  border-radius: 999px;
}

.profile-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2aa96d, #54d990);
  border-radius: inherit;
}

.profile-progress.medium .profile-progress-track span {
  background: linear-gradient(90deg, #c7942e, #f2c766);
}

.profile-progress.low .profile-progress-track span {
  background: linear-gradient(90deg, #dd4850, #ff7a7f);
}

.profile-progress.unknown .profile-progress-track span {
  background: #5d6675;
}

.profile-progress small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  min-height: 2.35em;
}

.profile-progress small:empty {
  visibility: hidden;
}

.profile-progress.medium small {
  color: #f2c766;
}

.profile-progress.low small {
  color: #ff9ea2;
}

.profile-match-list {
  display: grid;
  gap: 0.65rem;
}

.profile-match {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  background: #121721;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.profile-match.win {
  border-left-color: #39d58a;
}

.profile-match.loss {
  border-left-color: #dd4850;
}

.profile-match strong,
.profile-match span {
  overflow-wrap: anywhere;
}

.profile-match span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-dashboard-section.warning {
  border-color: rgba(221, 72, 80, 0.28);
}

.trust-panel {
  border-color: rgba(84, 217, 144, 0.22);
}

.trust-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.trust-panel-head h3 {
  margin-bottom: 0;
}

.trust-panel-head .trust-score-badge {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}

.trust-breakdown {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 0.75rem;
}

.trust-breakdown-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem;
  padding: 0.85rem;
  background: #121721;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-breakdown-row span,
.trust-breakdown-row small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.trust-breakdown-row span {
  color: #b8c4d7;
  text-transform: uppercase;
}

.trust-breakdown-row strong {
  color: #ffffff;
  overflow-wrap: anywhere;
  grid-column: 1 / -1;
}

.trust-breakdown-row small {
  grid-column: 1 / -1;
}

.trust-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  color: #ffffff;
  background: #d94848;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-score-badge.good {
  background: #1f9d62;
}

.trust-score-badge.medium {
  background: #c7942e;
}

.trust-score-badge.low,
.trust-score-badge.unknown {
  background: #d94848;
}

.trust-score-badge.compact {
  min-height: 1.65rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.78rem;
}

.trust-signals {
  display: grid;
  gap: 0.65rem;
}

.trust-signals h4 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1rem;
}

.trust-signals p {
  margin: 0;
  color: var(--muted);
}

.trust-signal {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.9rem;
  background: #121721;
  border: 1px solid var(--line);
  border-left: 3px solid #c7942e;
  border-radius: 8px;
}

.trust-signal.high {
  border-left-color: #dd4850;
}

.trust-signal.low {
  border-left-color: #54d990;
}

.trust-signal strong {
  color: #ffffff;
}

.trust-signal span {
  color: var(--muted);
  line-height: 1.45;
}

.report-leetify-note {
  margin-bottom: 0;
  padding: 0.85rem;
  color: var(--muted);
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-detail-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.evidence-frame {
  min-width: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  color: var(--muted);
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.evidence-frame:hover {
  border-color: var(--accent);
  color: var(--text);
}

.evidence-frame img,
.evidence-frame video {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 8px;
  background: #0b0d12;
}

.empty-state {
  display: grid;
  gap: 0.85rem;
  grid-column: 1 / -1;
  padding: 1.25rem;
  color: var(--muted);
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.empty-state p {
  margin-bottom: 0;
}

.empty-state .primary-button {
  width: fit-content;
}

.loading-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 5rem;
  padding: 1.25rem;
  color: var(--muted);
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.skeleton-card {
  min-width: 0;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 15rem;
  padding: 1rem;
  background: rgba(26, 29, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reports-list .skeleton-card {
  min-height: 8.5rem;
}

.skeleton-card-head {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.skeleton-logo,
.skeleton-line,
.skeleton-trace {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.skeleton-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  background: rgba(217, 72, 72, 0.10);
  border-color: rgba(217, 72, 72, 0.24);
}

.skeleton-title-block,
.skeleton-body {
  display: grid;
  gap: 0.65rem;
}

.skeleton-line {
  width: 100%;
  height: 0.78rem;
  border-radius: 999px;
}

.skeleton-title {
  width: 72%;
  height: 0.95rem;
}

.skeleton-short {
  width: 54%;
}

.skeleton-shine::before {
  content: "";
  position: absolute;
  inset: -45% -65%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 180, 180, 0.24) 31%, transparent 46%);
  transform: translateX(-60%);
  animation: skeletonShimmer 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.skeleton-trace {
  height: 0.28rem;
  border-radius: 999px;
}

.skeleton-trace::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(217, 72, 72, 0), rgba(217, 72, 72, 0.72), rgba(255, 180, 180, 0.46), rgba(217, 72, 72, 0));
  transform: translateX(-70%);
  animation: skeletonTrace 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.skeleton-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: rgba(244, 247, 251, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
}

.skeleton-loading span:first-child {
  color: transparent;
  background: linear-gradient(90deg, rgba(255, 180, 180, 0.62), rgba(255, 255, 255, 0.96), rgba(255, 180, 180, 0.62));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: skeletonTextShine 1.15s ease-in-out infinite;
}

.skeleton-ell {
  opacity: 0.65;
  animation: skeletonDots 1s steps(3, end) infinite;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75em;
}

.loader-dot {
  height: 0.8125em;
  width: 1.25em;
  margin-right: 0.625em;
  border-radius: 0.625em;
  background-color: var(--accent);
  animation: loaderpulse 1.5s infinite ease-in-out;
}

.loader-dot:last-child {
  margin-right: 0;
}

.loader-dot:nth-child(1) {
  animation-delay: -0.1875s;
}

.loader-dot:nth-child(2) {
  animation-delay: -0.0625s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.0625s;
}

@keyframes skeletonShimmer {
  to {
    transform: translateX(60%);
  }
}

@keyframes skeletonTrace {
  to {
    transform: translateX(70%);
  }
}

@keyframes skeletonTextShine {
  0% {
    background-position: 0% 50%;
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }

  100% {
    background-position: 100% 50%;
    opacity: 0.76;
  }
}

@keyframes skeletonDots {
  0% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.35;
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(0.8);
    background-color: #ffb4b4;
    box-shadow: 0 0 0 0 rgba(217, 72, 72, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: var(--accent);
    box-shadow: 0 0 0 0.625em rgba(217, 72, 72, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #ffb4b4;
    box-shadow: 0 0 0 0 rgba(217, 72, 72, 0.7);
  }
}

.steam-profile-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.steam-profile-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.steam-profile-main:hover,
.steam-profile-main:focus-visible {
  border-color: rgba(217, 72, 72, 0.48);
  outline: none;
}

.steam-profile-main img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101319;
}

.steam-profile-main h3 {
  margin-bottom: 0.3rem;
}

.steam-profile-main p {
  margin-bottom: 0.3rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.profile-actions {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.profile-actions a,
.profile-actions button {
  color: #ffffff;
  background: var(--accent);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.profile-actions button {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.profile-actions button:hover {
  border-color: var(--accent);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: end;
  margin-top: auto;
}

.card-head .report-actions {
  flex-wrap: nowrap;
}

.report-actions a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.report-actions svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.report-detail-actions:empty {
  display: none;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: start;
  width: fit-content;
  max-width: max-content;
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(84, 217, 144, 0.38);
  border-radius: 8px;
  color: #a9f4c9;
  background: rgba(84, 217, 144, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
}

.profile-report-list {
  display: grid;
  gap: 0.65rem;
}

.profile-report-list h4 {
  margin: 0;
}

.profile-report-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.report-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.report-copy {
  padding: 1.25rem;
  position: sticky;
  top: 6rem;
}

.report-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.report-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.upload-box {
  place-items: center;
  min-height: 8rem;
  padding: 1.25rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #101319;
  text-align: center;
  cursor: pointer;
}

.verified-report-warning {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  color: #ffe3b3;
  background: rgba(247, 185, 85, 0.12);
  border: 1px solid rgba(247, 185, 85, 0.35);
  border-radius: 8px;
}

.verified-report-warning p {
  margin-bottom: 0;
  color: #f5d9aa;
  line-height: 1.55;
}

.verified-report-warning[hidden] {
  display: none;
}

.tutorial-dialog {
  width: min(34rem, calc(100vw - 2rem));
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.tutorial-dialog::backdrop {
  background: rgba(3, 5, 9, 0.68);
  backdrop-filter: blur(10px);
}

.tutorial-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.1rem, 4vw, 1.45rem);
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(217, 72, 72, 0.2), transparent 17rem),
    linear-gradient(145deg, #171a21, #101319);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.tutorial-card .tutorial-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 2rem;
  min-height: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 8px;
  line-height: 1;
}

.tutorial-copy {
  display: grid;
  gap: 0.55rem;
  padding-right: 2.6rem;
}

.tutorial-copy h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.tutorial-copy p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tutorial-copy strong {
  color: #ffffff;
}

.tutorial-copy .badge {
  justify-self: start;
  width: max-content;
}

.tutorial-browser {
  overflow: hidden;
  background: rgba(7, 10, 15, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tutorial-browser-top {
  display: flex;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tutorial-browser-top span {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: #3e4658;
}

.tutorial-browser-top span:first-child {
  background: #ff6464;
}

.tutorial-browser-top span:nth-child(2) {
  background: #f4b95f;
}

.tutorial-browser-top span:nth-child(3) {
  background: #54d990;
}

.tutorial-address {
  position: relative;
  height: 3.25rem;
  margin: 0.9rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.74rem, 2.4vw, 0.92rem);
  line-height: 3.15rem;
  white-space: nowrap;
  animation: tutorialAddressFocus 7.5s infinite;
}

.tutorial-live-url,
.tutorial-final-url {
  position: absolute;
  inset: 0 auto auto 1.05rem;
  max-width: calc(100% - 2.1rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.tutorial-live-url {
  display: flex;
  animation: tutorialLiveUrl 7.5s infinite;
}

.tutorial-live-url span {
  display: inline-block;
}

.tutorial-typed-bl {
  flex: 0 0 auto;
  width: 0;
  overflow: hidden;
  color: #ffffff;
  animation: tutorialTypeBl 7.5s steps(2) infinite;
}

.tutorial-caret {
  flex: 0 0 2px;
  width: 2px;
  height: 1.25em;
  align-self: center;
  margin: 0;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(217, 72, 72, 0.65);
  animation: tutorialCaret 7.5s step-end infinite;
}

.tutorial-final-url {
  color: #ffd2d2;
  opacity: 0;
  animation: tutorialFinalUrl 7.5s infinite;
}

.tutorial-understood {
  justify-self: start;
}

@keyframes tutorialAddressFocus {
  0%, 16%, 38%, 100% {
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: none;
  }

  20%, 34% {
    border-color: rgba(217, 72, 72, 0.68);
    box-shadow: 0 0 0 3px rgba(217, 72, 72, 0.14);
  }
}

@keyframes tutorialLiveUrl {
  0%, 43% {
    opacity: 1;
  }

  49%, 100% {
    opacity: 0;
  }
}

@keyframes tutorialTypeBl {
  0%, 20% {
    width: 0;
  }

  26%, 100% {
    width: 2ch;
  }
}

@keyframes tutorialCaret {
  0%, 8%, 16%, 24%, 32%, 40% {
    opacity: 1;
  }

  4%, 12%, 20%, 28%, 36%, 44%, 100% {
    opacity: 0;
  }
}

@keyframes tutorialFinalUrl {
  0%, 47% {
    opacity: 0;
    transform: translateX(-0.5rem);
  }

  55%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.report-form .truth-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  color: var(--muted);
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: left;
}

.report-form .truth-check input {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.truth-check span {
  min-width: 0;
}

.truth-check strong {
  color: var(--text);
}

.upload-box input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.upload-box span {
  color: var(--text);
  font-size: 1.1rem;
}

.upload-box small {
  color: var(--muted);
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.preview-item {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.preview-item img,
.preview-item video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101319;
}

.preview-item span {
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.remove-file {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: auto;
  padding: 0.38rem 0.52rem;
  color: #ffffff;
  background: rgba(255, 107, 107, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.remove-file:hover {
  background: var(--danger);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.captcha-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #101319;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 5.5rem;
}

.captcha-copy {
  display: grid;
  gap: 0.35rem;
}

.captcha-copy strong {
  color: var(--text);
  font-size: 0.95rem;
}

.captcha-copy p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.turnstile-widget {
  width: 300px;
  max-width: 100%;
  color: var(--muted);
  font-weight: 800;
}

.turnstile-widget .loading-state {
  min-height: 3.5rem;
  padding: 0.5rem;
  background: transparent;
  border: 0;
}

.turnstile-widget iframe {
  max-width: 100%;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#formMessage,
#verificationMessage {
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 800;
}

#formMessage[data-tone="error"],
#verificationMessage[data-tone="error"] {
  color: var(--danger);
}

@media (max-width: 900px) {
  .workspace,
  .search-panel,
  .verification-hero,
  .verification-section,
  .steam-profile-main,
  .report-row,
  .report-section,
  .admin-shell,
  .admin-toolbar,
  .admin-account-grid {
    grid-template-columns: 1fr;
  }

  .admin-account-form {
    position: static;
  }

  .profile-actions {
    justify-items: stretch;
  }

  .featured-streams {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }

  .requirement-grid {
    grid-template-columns: 1fr;
  }

  .captcha-box {
    grid-template-columns: 1fr;
  }

  .turnstile-widget {
    width: 100%;
  }

  .verified-users-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-detail-evidence,
  .report-detail-meta,
  .about-grid,
  .application-meta,
  .verified-profile-modal-main,
  .verified-profile-modal-main dl,
  .leetify-summary,
  .leetify-grid,
  .profile-metric-grid,
  .profile-metric-grid.compact,
  .profile-progress-grid,
  .trust-breakdown {
    grid-template-columns: 1fr;
  }

  .leetify-dialog .profile-modal-hero {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    width: 100%;
    justify-content: flex-start;
  }

  .profile-modal-actions {
    justify-content: space-between;
  }

  .report-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-heading,
  .form-actions,
  .leetify-attribution {
    align-items: stretch;
    flex-direction: column;
  }

  .app-header {
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .brand h1,
  .brand .eyebrow {
    overflow-wrap: anywhere;
  }

  .nav-menu {
    align-self: flex-start;
  }

  .nav-menu summary {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
  }

  .nav-menu:not([open]) .top-actions {
    display: none;
  }

  .top-actions,
  .search-row,
  .form-grid,
  .stats,
  .verified-users-grid,
  .results-grid,
  .profile-match,
  .admin-tabs,
  .token-row {
    grid-template-columns: 1fr;
  }

  .profile-modal-identity,
  .profile-modal-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-brand-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .leetify-attribution.profile-attribution {
    grid-template-columns: 1fr;
  }

  .leetify-attribution.profile-attribution p {
    width: 100%;
  }

  .leetify-attribution-actions {
    --leetify-action-width: min(100%, 18rem);
    width: min(100%, 18rem);
    margin-left: 0;
    justify-self: center;
    align-items: stretch;
  }

  .leetify-attribution img {
    max-width: 100%;
  }

  .trust-panel-head {
    align-items: flex-start;
  }

  .trust-panel-head .trust-score-badge {
    font-size: clamp(2rem, 12vw, 3rem);
    max-width: 44%;
    padding-inline: 0.5rem;
  }

  .profile-modal-actions img {
    width: min(190px, 100%);
  }

  .top-actions {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    z-index: 20;
    width: min(17rem, calc(100vw - 2rem));
    display: grid;
    gap: 0.5rem;
    padding: 0.65rem;
    background: rgba(17, 19, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .top-actions a,
  button {
    width: 100%;
    text-align: center;
  }

  .icon-button {
    width: 2.5rem;
    align-self: flex-start;
  }
}

.verified-button {
  background: linear-gradient(135deg, #d94848, #9d2d32);
  color: #ffffff;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(217, 72, 72, 0.18);
}

.verified-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(217, 72, 72, 0.24);
}

/* 2026 visual refresh */
:root {
  --bg: #050910;
  --panel: rgba(16, 21, 30, 0.86);
  --panel-strong: rgba(24, 29, 40, 0.9);
  --panel-soft: rgba(11, 16, 24, 0.72);
  --text: #f6f8fb;
  --muted: #a9b1bf;
  --muted-strong: #c9d2e2;
  --line: rgba(170, 184, 205, 0.16);
  --line-strong: rgba(219, 229, 245, 0.24);
  --accent: #ef4444;
  --accent-dark: #b91c1c;
  --accent-soft: rgba(239, 68, 68, 0.12);
  --danger: #ef4444;
  --warning: #f5b84b;
  --success: #36c986;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at 76% 2%, rgba(239, 68, 68, 0.28), transparent 21rem),
    radial-gradient(circle at 4% 20%, rgba(65, 94, 135, 0.12), transparent 26rem),
    linear-gradient(180deg, #03070d 0%, #070b12 44%, #10131a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(239, 68, 68, 0.14) 49%, transparent 50%);
  background-size: 72px 72px, 72px 72px, 144px 144px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 82%);
}

.app-header {
  padding: 1rem clamp(1rem, 4vw, 3.75rem);
  background: rgba(4, 8, 14, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.2), rgba(15, 20, 29, 0.88));
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 16px 36px rgba(239, 68, 68, 0.12);
}

.brand .eyebrow,
.eyebrow {
  color: #ff5a5f;
}

.top-actions a,
button,
.primary-button,
.section-link {
  background: linear-gradient(135deg, #ff4b50, #d7383d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.18);
}

.top-actions a:first-child,
.ghost-link,
.ghost-button,
.profile-actions button {
  background: rgba(11, 16, 24, 0.62);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.top-actions a[aria-current="page"] {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.55);
}

main {
  width: min(1280px, calc(100% - 2rem));
  padding-top: clamp(1.4rem, 4vw, 3rem);
}

.home-hero,
.verified-directory-hero,
.verification-hero,
.search-panel,
.verified-search-panel,
.trust-principles,
.how-it-works,
.report-form,
.report-copy,
.verification-copy,
.verification-card,
.requirement-card,
.report-card,
.report-row,
.steam-profile-card,
.verified-user-card,
.about-hero,
.about-section,
.about-grid article,
.admin-panel,
.application-card,
.site-footer {
  background:
    linear-gradient(145deg, rgba(17, 23, 33, 0.9), rgba(7, 11, 18, 0.78)),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.08), transparent 18rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
  gap: clamp(1.25rem, 4vw, 2.25rem);
  align-items: center;
  min-height: clamp(24rem, 45vw, 33rem);
  margin-bottom: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  overflow: hidden;
}

.home-hero::after,
.verified-directory-hero::after,
.verification-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2), transparent 65%);
}

.home-hero-copy,
.home-hero-visual {
  position: relative;
  z-index: 1;
}

.home-hero h2,
.verified-directory-hero h2,
.verification-copy h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
}

.home-hero p:not(.eyebrow),
.verified-directory-hero p,
.verification-copy p {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  gap: 0.9rem;
}

.hero-actions a {
  min-height: 3.25rem;
  padding-inline: 1.35rem;
}

.home-hero-visual {
  min-height: 19rem;
  display: grid;
  place-items: center;
}

.hero-shield {
  width: min(100%, 18rem);
  filter: drop-shadow(0 0 44px rgba(239, 68, 68, 0.28));
}

.hero-shield path:first-child {
  fill: rgba(239, 68, 68, 0.08);
  stroke: rgba(239, 68, 68, 0.72);
  stroke-width: 4;
}

.hero-shield path:last-child {
  fill: none;
  stroke: #ff4b50;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-id-card {
  position: absolute;
  right: clamp(0.25rem, 5vw, 1.5rem);
  bottom: 2.5rem;
  width: 9rem;
  height: 5rem;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.8rem;
  background: rgba(24, 29, 40, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.hero-id-card span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-id-card strong,
.hero-id-card i {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-id-card i {
  grid-column: 2;
  width: 72%;
}

.trust-principles,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1rem;
  padding: 1rem;
}

.trust-principles.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.trust-principles article,
.steps-grid article {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.trust-principles article:last-child,
.steps-grid article:last-child {
  border-right: 0;
}

.principle-icon,
.steps-grid span {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: #ff6b70;
  background: rgba(239, 68, 68, 0.13);
  border: 1px solid rgba(239, 68, 68, 0.26);
  border-radius: 999px;
  font-weight: 900;
}

.trust-principles h3,
.steps-grid h3 {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 1rem;
}

.trust-principles p,
.steps-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.workspace {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 1rem;
}

.search-panel {
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.search-panel-heading h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

input,
select,
textarea {
  background: rgba(5, 9, 16, 0.72);
  border-color: var(--line-strong);
}

.search-row input {
  min-height: 3.7rem;
  font-size: 1.05rem;
}

.filters label {
  min-height: 3rem;
  padding-inline: 0.9rem;
  background: rgba(11, 16, 24, 0.54);
}

.filters label:has(input:checked) {
  color: #fff;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.55);
}

.stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1rem;
}

.stat-card {
  min-height: 7rem;
  padding: 1.2rem;
  background: rgba(26, 32, 44, 0.86);
}

.stat-card.total {
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.24), transparent 13rem),
    rgba(26, 32, 44, 0.86);
}

.stats span {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
}

.how-it-works {
  margin-bottom: 1rem;
  padding: 1rem;
}

.how-it-works .section-heading {
  margin-bottom: 0.4rem;
}

.steps-grid {
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid article {
  display: flex;
  gap: 1rem;
}

.steps-grid span {
  flex: 0 0 auto;
}

.section-heading h2 {
  color: #fff;
}

.section-link.text-link {
  color: #ff5a5f;
  background: transparent;
  box-shadow: none;
}

.safety-flow {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background:
    radial-gradient(circle at 92% 4%, rgba(239, 68, 68, 0.16), transparent 22rem),
    linear-gradient(145deg, rgba(17, 23, 33, 0.9), rgba(7, 11, 18, 0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.safety-flow-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.safety-flow-intro h2 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}

.safety-flow-intro p:not(.eyebrow) {
  max-width: 58rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.safety-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.safety-flow-card {
  min-width: 0;
  padding: 1rem;
  background: rgba(5, 9, 16, 0.36);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.safety-flow-card > h3,
.safety-flow-card .section-heading h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.25rem;
}

.safety-flow-card .section-heading {
  margin-bottom: 0.8rem;
}

.safety-flow .steps-grid,
.safety-flow .trust-principles {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.safety-flow .steps-grid article,
.safety-flow .trust-principles article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem;
  background: rgba(16, 21, 30, 0.62);
  border: 1px solid rgba(170, 184, 205, 0.12);
  border-radius: 8px;
}

.safety-flow .steps-grid article {
  display: flex;
}

.safety-flow .steps-grid article:last-child,
.safety-flow .trust-principles article:last-child {
  border-right: 1px solid rgba(170, 184, 205, 0.12);
}

.safety-flow .steps-grid span,
.safety-flow .principle-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  font-size: 0.82rem;
}

.safety-flow .flow-icon,
.safety-flow .principle-icon {
  flex: 0 0 auto;
  color: #ff6b70;
}

.safety-flow .flow-icon svg,
.safety-flow .principle-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-flow h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.98rem;
}

.safety-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.results-grid,
.verified-users-grid {
  gap: 1rem;
}

.report-card,
.report-row {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-height: 22rem;
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover,
.report-row:hover,
.verified-user-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.report-card .description,
.report-row .description,
.report-user-statement p {
  display: -webkit-box;
  min-height: 3.1rem;
  max-height: 4.7rem;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--muted-strong);
  line-height: 1.55;
}

.report-user-statement {
  min-height: 5.35rem;
}

.report-user-statement-label,
.report-source-note {
  display: block;
  margin-bottom: 0.35rem;
  color: #ff777b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-profile-head {
  grid-template-columns: 3.75rem minmax(0, 1fr);
}

.report-profile-avatar,
.verified-user-avatar {
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1;
}

.report-profile-head h3,
.verified-user-card h3 {
  color: #fff;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.report-profile-meta {
  color: var(--muted);
}

.report-card dl,
.report-row dl,
.verified-user-card dl,
.report-detail-meta {
  color: var(--muted-strong);
}

.report-card dt,
.report-row dt,
.verified-user-card dt,
.report-detail-meta dt {
  color: #d9e5fb;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.media-list {
  align-self: end;
}

.profile-actions.report-actions,
.verified-user-actions {
  min-height: 2.5rem;
}

.report-actions a,
.verified-user-actions a {
  background: linear-gradient(135deg, #ff4b50, #d7383d);
}

.verified-directory-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.32fr);
  align-items: center;
  overflow: hidden;
}

.directory-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 11rem;
}

.directory-visual svg {
  width: min(100%, 12rem);
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 28px rgba(239, 68, 68, 0.25));
}

.reports-list {
  gap: 0.8rem;
}

.report-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.8fr);
  min-height: 10rem;
  align-items: center;
}

.report-row .card-head {
  grid-column: 1 / -1;
}

.report-row dl {
  grid-column: 2;
  grid-row: 2 / span 3;
  align-self: stretch;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.verification-hero,
.verification-copy,
.verification-card {
  position: relative;
  overflow: hidden;
}

.private-note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  font-size: 0.96rem !important;
}

.private-note::before {
  content: "";
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.23rem;
  border: 2px solid var(--muted);
  border-radius: 4px;
  box-shadow: inset 0 0.32rem 0 -0.18rem var(--muted);
}

.verification-section,
.report-section {
  gap: 1rem;
}

.report-copy {
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.12), transparent 18rem),
    rgba(16, 21, 30, 0.82);
}

.upload-box {
  background: rgba(5, 9, 16, 0.5);
  border-color: rgba(170, 184, 205, 0.25);
}

.upload-box span {
  color: #ff6569;
  font-weight: 900;
}

.captcha-box,
.truth-check,
.report-leetify-note,
.evidence-frame,
.empty-state,
.loading-state {
  background: rgba(5, 9, 16, 0.5);
  border-color: var(--line);
}

.site-footer {
  width: min(1280px, calc(100% - 2rem));
  margin-bottom: 1rem;
  padding: 1.2rem;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  gap: 0.15rem;
}

.site-footer a {
  color: var(--muted);
}

dialog.report-dialog {
  background: transparent;
}

.report-detail {
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.14), transparent 22rem),
    linear-gradient(145deg, #151a23, #080c13);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.leetify-attribution,
.profile-modal-hero,
.trust-panel,
.profile-metric-section,
.profile-source-list,
.verified-profile-modal {
  background: rgba(5, 9, 16, 0.36);
  border-color: var(--line);
}

@media (max-width: 1100px) {
  .home-hero,
  .verified-directory-hero,
  .search-panel,
  .verification-hero,
  .verification-section,
  .report-section {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 12rem;
  }

  .stats,
  .trust-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-principles article:nth-child(2n),
  .steps-grid article:nth-child(2n) {
    border-right: 0;
  }

  .report-row {
    grid-template-columns: 1fr;
  }

  .report-row dl {
    grid-column: auto;
    grid-row: auto;
    padding-left: 0;
    border-left: 0;
  }

  .safety-flow-intro,
  .safety-flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  main {
    width: min(100% - 1rem, 44rem);
  }

  .app-header {
    padding: 0.85rem;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .home-hero,
  .verified-directory-hero,
  .verification-copy,
  .verification-card,
  .search-panel,
  .verified-search-panel,
  .how-it-works,
  .report-form,
  .report-copy {
    padding: 1rem;
  }

  .home-hero h2,
  .verified-directory-hero h2,
  .verification-copy h2,
  .search-panel-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero-actions,
  .search-row,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-principles,
  .trust-principles.compact,
  .steps-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .trust-principles article,
  .steps-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-principles article:last-child,
  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .report-card,
  .report-row {
    min-height: 21rem;
  }

  .site-footer {
    padding: 1rem;
  }

  .safety-flow {
    padding: 1rem;
  }

  .safety-flow .steps-grid article,
  .safety-flow .trust-principles article {
    border-bottom: 1px solid rgba(170, 184, 205, 0.12);
  }
}
