/* ================================
   PRIME TIME RUST - WALL OF SHAME
   Uses main website hero + PTR HUD outlines
================================ */

.wall-page {
  --wall-red: #ff3f35;
  --wall-red-soft: rgba(255,63,53,.72);
  --wall-red-line: rgba(255,63,53,.28);
  --wall-red-glow: rgba(255,63,53,.16);

  position: relative;
  width: 100%;
  padding-bottom: 56px;
}

/* ================================
   HERO - MATCH MAIN PTR HERO SIZE
================================ */

.wall-hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid rgba(255,63,53,.24);
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.97) 0%,
      rgba(0,0,0,.82) 34%,
      rgba(0,0,0,.38) 62%,
      rgba(0,0,0,.78) 100%
    ),
    url('/assets/img/moderation-active-bans-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,.86),
    0 0 24px rgba(255,63,53,.06);
}

/* Let the real website hero control the height */
.wall-hero .hero-inner,
.wall-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
}

/* Full PTR outer HUD corners */
.wall-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  z-index: 6;
  opacity: .85;
  background:
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 1px 44px no-repeat;
}

/* Same subtle page texture as stats panels */
.wall-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 16% 30%, rgba(255,63,53,.10), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255,63,53,.15), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0 1px,
      transparent 1px 82px
    );
  opacity: .72;
}

.wall-hero-bg {
  display: none;
}

.wall-kicker {
  color: rgba(244,247,239,.88);
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 13px;
  font-weight: 1000;
  margin: 0 0 22px;
  text-shadow: 0 0 12px rgba(0,0,0,.9);
}

.wall-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 1000;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .035em;
  text-shadow:
    0 4px 18px rgba(0,0,0,.95),
    0 0 24px rgba(255,63,53,.18);
}

.wall-copy,
.wall-hero .hero-copy {
  margin: 25px 0 0;
  max-width: 720px;
  color: rgba(244,247,239,.90);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,.86);
}

.wall-section-kicker {
  color: var(--wall-red);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,63,53,.26);
}

/* ================================
   VIEW SWITCH
================================ */

.wall-view-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.wall-view-switch a {
  min-width: 132px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,63,53,.28);
  background:
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.92));
  color: rgba(244,247,239,.66);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform .18s ease,
    border-color .18s ease,
    color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.wall-view-switch a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,63,53,.62);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255,63,53,.12);
}

.wall-view-switch a.is-active {
  border-color: rgba(255,63,53,.74);
  background:
    linear-gradient(180deg, rgba(255,63,53,.16), rgba(0,0,0,.86));
  color: var(--wall-red);
  box-shadow:
    inset 0 0 18px rgba(255,63,53,.06),
    0 0 18px rgba(255,63,53,.12);
}

/* ================================
   MAIN SECTION PANEL
================================ */

.wall-section {
  position: relative;
  overflow: hidden;
  width: min(100%, 1520px);
  margin: 14px auto 0;
  padding: 22px;
  border: 1px solid rgba(255,63,53,.26);
  background:
    linear-gradient(180deg, rgba(12,2,2,.96), rgba(0,0,0,.97));
  box-shadow:
    inset 0 0 54px rgba(0,0,0,.78),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.wall-section::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  z-index: 5;
  opacity: .85;
  background:
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 1px 44px no-repeat;
}

.wall-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,63,53,.10), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(255,63,53,.08), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0 1px,
      transparent 1px 82px
    );
  opacity: .74;
}

.wall-section-head {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.wall-section-head h2 {
  margin: 6px 0 0;
  color: var(--text, #f4f7ef);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 34px;
  line-height: .95;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 2px 12px rgba(0,0,0,.92),
    0 0 14px rgba(255,63,53,.12);
}

.wall-section-head p {
  max-width: 390px;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(255,63,53,.68);
  color: rgba(244,247,239,.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

/* ================================
   ANIMAL CARD GRID
================================ */

.wall-animal-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wall-animal-card {
  position: relative;
  overflow: hidden;
  min-height: 312px;
  border: 1px solid rgba(255,63,53,.22);
  background:
    linear-gradient(180deg, rgba(14,4,4,.98), rgba(0,0,0,.98));
  box-shadow:
    inset 0 0 32px rgba(0,0,0,.78),
    0 0 18px rgba(255,63,53,.04);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.wall-animal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,63,53,.78);
  box-shadow:
    0 0 28px rgba(255,63,53,.15),
    inset 0 0 32px rgba(255,63,53,.035);
}

.wall-animal-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255,63,53,.12);
}

.wall-animal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28) 55%, rgba(0,0,0,.84)),
    radial-gradient(circle at 50% 12%, rgba(255,63,53,.16), transparent 38%),
    radial-gradient(circle at 50% 48%, rgba(255,63,53,.09), transparent 44%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.014) 0 1px,
      transparent 1px 56px
    );
  opacity: .88;
}

.wall-animal-card.is-empty {
  opacity: .74;
  filter: grayscale(.3);
}

.wall-animal-glow {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,63,53,.22), transparent 62%);
  filter: blur(6px);
  opacity: .9;
}

.wall-animal-content {
  position: relative;
  z-index: 3;
  min-height: 312px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.wall-animal-label {
  position: relative;
  z-index: 3;
  min-height: 36px;
  padding: 0 14px;
  margin: 0 -2px 12px;

  border: 1px solid rgba(255,63,53,.34);
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(18,0,0,.94) 50%,
      rgba(0,0,0,.98) 100%
    );

  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow:
    0 2px 10px rgba(0,0,0,.94),
    0 0 12px rgba(255,63,53,.24);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wall-animal-img-wrap {
  position: relative;
  z-index: 3;
  height: 142px;
  margin: 0 0 12px;
  padding: 8px 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,63,53,.12);
  background:
    radial-gradient(circle at center, rgba(255,63,53,.11), transparent 56%),
    rgba(0,0,0,.34);
  box-shadow:
    inset 0 0 24px rgba(0,0,0,.72);
}

.wall-animal-img {
  max-width: 150px;
  max-height: 124px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 14px 16px rgba(0,0,0,.78))
    drop-shadow(0 0 14px rgba(255,63,53,.16));
}

/* ================================
   VICTIM STRIP
   Wider 3-column card version
================================ */

.wall-victim {
  position: relative;
  z-index: 3;
  margin-top: auto;
  min-height: 74px;
  padding: 9px 10px;

  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 11px;

  border: 1px solid rgba(255,63,53,.30);
  background:
    linear-gradient(90deg, rgba(255,63,53,.13), rgba(0,0,0,.68), rgba(255,63,53,.055));
  box-shadow:
    inset 0 0 22px rgba(0,0,0,.76),
    0 0 14px rgba(255,63,53,.045);

  text-align: left;
}

.wall-victim::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 2px;
  background: rgba(255,63,53,.78);
  box-shadow: 0 0 12px rgba(255,63,53,.34);
}

.wall-victim-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;

  border: 1px solid rgba(255,63,53,.42);
  background: #050505;

  box-shadow:
    inset 0 0 16px rgba(0,0,0,.78),
    0 0 14px rgba(255,63,53,.10);
}

.wall-victim-info {
  min-width: 0;
  padding-right: 2px;
}

.wall-victim-info strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  color: #ffffff;

  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: .025em;
  text-transform: uppercase;

  text-shadow:
    0 2px 10px rgba(0,0,0,.95),
    0 0 10px rgba(255,63,53,.12);
}

.wall-victim-info span {
  display: block;
  margin-top: 7px;

  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;

  text-shadow: 0 0 10px rgba(255,63,53,.20);
}

/* ================================
   EMPTY STATE
================================ */

.wall-empty {
  position: relative;
  z-index: 3;
  margin-top: auto;
  min-height: 68px;
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px dashed rgba(255,63,53,.28);
  background: rgba(0,0,0,.44);
  color: rgba(244,247,239,.46);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 20px rgba(0,0,0,.62);
}

.wall-empty-section {
  position: relative;
  z-index: 6;
  overflow: hidden;
  min-height: 132px;
  padding: 18px;

  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;

  border: 1px solid rgba(255,63,53,.28);
  background:
    linear-gradient(90deg, rgba(255,63,53,.10), rgba(0,0,0,.84) 42%, rgba(0,0,0,.94)),
    radial-gradient(circle at 8% 50%, rgba(255,63,53,.18), transparent 36%);
  box-shadow:
    inset 0 0 34px rgba(0,0,0,.78),
    0 0 18px rgba(255,63,53,.05);
}

.wall-empty-section::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255,63,53,.12);
}

.wall-empty-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0 1px,
      transparent 1px 62px
    );
  opacity: .55;
}

.wall-empty-shame > * {
  position: relative;
  z-index: 3;
}

.wall-empty-shame-icon {
  width: 74px;
  height: 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,63,53,.38);
  background:
    radial-gradient(circle at center, rgba(255,63,53,.18), transparent 62%),
    linear-gradient(180deg, rgba(14,4,4,.96), rgba(0,0,0,.96));

  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 34px;
  font-weight: 1000;

  box-shadow:
    inset 0 0 24px rgba(0,0,0,.82),
    0 0 18px rgba(255,63,53,.10);

  text-shadow:
    0 0 12px rgba(255,63,53,.36),
    0 2px 10px rgba(0,0,0,.95);
}

.wall-empty-shame-img {
  padding: 10px;
}

.wall-empty-shame-img img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 8px 12px rgba(0,0,0,.82))
    drop-shadow(0 0 10px rgba(255,63,53,.20));
}

.wall-empty-shame strong {
  display: block;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow:
    0 2px 12px rgba(0,0,0,.95),
    0 0 14px rgba(255,63,53,.14);
}

.wall-empty-shame p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(244,247,239,.64);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

/* ================================
   COMING SOON CARDS
================================ */

.wall-coming-soon {
  width: min(100%, 1520px);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wall-coming-card {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255,63,53,.20);
  background:
    linear-gradient(180deg, rgba(14,4,4,.96), rgba(0,0,0,.96));
  box-shadow:
    inset 0 0 28px rgba(0,0,0,.76),
    0 0 16px rgba(255,63,53,.04);
}

.wall-coming-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255,63,53,.10);
}

.wall-coming-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,63,53,.10), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.014) 0 1px,
      transparent 1px 56px
    );
  opacity: .72;
}

.wall-coming-card > * {
  position: relative;
  z-index: 2;
}

.wall-coming-card span {
  display: block;
  color: rgba(244,247,239,.48);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wall-coming-card strong {
  display: block;
  margin-top: 8px;
  color: var(--wall-red);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 24px;
  line-height: .95;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,63,53,.14);
}

.wall-coming-card.is-red {
  border-color: rgba(255,63,53,.28);
}

.wall-coming-card.is-red::after {
  background:
    radial-gradient(circle at 18% 0%, rgba(255,63,53,.13), transparent 34%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.014) 0 1px,
      transparent 1px 56px
    );
}

.wall-coming-card.is-red strong {
  color: #ff3f35;
  text-shadow: 0 0 12px rgba(255,63,53,.16);
}

/* ================================
   WALL OF SHAME - KILL GLOBAL GREEN
   Put this at the VERY BOTTOM
================================ */

.wall-page {
  --green: #ff3f35;
  --line: rgba(255,63,53,.18);
  --line-strong: rgba(255,63,53,.34);
  --wall-red: #ff3f35;
  --wall-red-bright: #ff5a50;
  --wall-red-line: rgba(255,63,53,.34);
  --wall-red-line-strong: rgba(255,63,53,.72);
}

/* Force the hero frame itself red, even if .hero global CSS is fighting it */
body .wall-page .hero.wall-hero,
body .wall-page section.hero.wall-hero,
body .wall-page .wall-hero {
  border-color: rgba(255,63,53,.34) !important;
  outline-color: rgba(255,63,53,.34) !important;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,.86),
    0 0 24px rgba(255,63,53,.08) !important;
}

/* Force the visible HUD corner outline red */
body .wall-page .hero.wall-hero::before,
body .wall-page .wall-hero::before {
  background:
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right top / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) left bottom / 1px 44px no-repeat,

    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 44px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.72), rgba(255,63,53,.72)) right bottom / 1px 44px no-repeat !important;
}

/* If the main .hero-inner has any green frame/lines, remove them */
body .wall-page .wall-hero .hero-inner,
body .wall-page .wall-hero-inner {
  border-color: rgba(255,63,53,.18) !important;
  outline-color: rgba(255,63,53,.18) !important;
  box-shadow: none !important;
}

body .wall-page .wall-hero .hero-inner::before,
body .wall-page .wall-hero .hero-inner::after,
body .wall-page .wall-hero-inner::before,
body .wall-page .wall-hero-inner::after {
  border-color: rgba(255,63,53,.18) !important;
  outline-color: rgba(255,63,53,.18) !important;
  box-shadow: none !important;
}

/* Make all Wall page accent text red, not global green */
body .wall-page .wall-kicker,
body .wall-page .wall-section-kicker,
body .wall-page .wall-view-switch a.is-active,
body .wall-page .wall-coming-card strong,
body .wall-page .wall-coming-card.is-red strong {
  color: #ff3f35 !important;
  text-shadow: 0 0 14px rgba(255,63,53,.22) !important;
}

/* ================================
   WALL EMPTY RIGHT-SIDE BANNERS
================================ */

.wall-empty-shame {
  isolation: isolate;
  overflow: hidden;
}

.wall-empty-animals::after,
.wall-empty-scientists::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .95;
}

.wall-empty-animals::after {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.95) 32%,
      rgba(0,0,0,.76) 55%,
      rgba(0,0,0,.28) 100%
    ),
    url('/assets/img/stats-panels/wall-empty-animals-banner.webp') right center / auto 100% no-repeat;
}

.wall-empty-scientists::after {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.95) 32%,
      rgba(0,0,0,.76) 55%,
      rgba(0,0,0,.28) 100%
    ),
    url('/assets/img/stats-panels/wall-empty-scientists-banner.webp') right center / auto 100% no-repeat;
}

.wall-empty-shame > * {
  position: relative;
  z-index: 4;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
  .wall-coming-soon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .wall-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wall-section-head p {
    max-width: 620px;
  }
  
  .wall-animal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wall-page {
    padding-bottom: 42px;
  }
  
  .wall-hero-inner {
  padding-left: 22px;
  padding-right: 22px;
}

  .wall-hero::before {
    inset: 10px;
    background:
      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) left top / 34px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) left top / 1px 34px no-repeat,

      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) right top / 34px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) right top / 1px 34px no-repeat,

      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) left bottom / 34px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) left bottom / 1px 34px no-repeat,

      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) right bottom / 34px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.68), rgba(255,63,53,.68)) right bottom / 1px 34px no-repeat;
  }

  .wall-section {
    padding: 18px;
  }

  .wall-section::before {
    inset: 10px;
    background:
      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) left top / 32px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) left top / 1px 32px no-repeat,

      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) right top / 32px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) right top / 1px 32px no-repeat,

      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) left bottom / 32px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) left bottom / 1px 32px no-repeat,

      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) right bottom / 32px 1px no-repeat,
      linear-gradient(rgba(255,63,53,.62), rgba(255,63,53,.62)) right bottom / 1px 32px no-repeat;
  }

  .wall-section-head h2 {
    font-size: 28px;
  }

  .wall-animal-grid,
  .wall-coming-soon {
    grid-template-columns: 1fr;
  }

  .wall-animal-card,
  .wall-animal-content {
    min-height: 300px;
  }

  .wall-view-switch a {
    flex: 1 1 130px;
  }
  
    .wall-empty-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 22px 16px;
  }

  .wall-empty-shame p {
    margin-left: auto;
    margin-right: auto;
  }
  
}

/* =========================================================
   WALL OF SHAME - Boss deaths + offline raiders
   Paste at bottom of /assets/css/wall-of-shame.css
========================================================= */

.wall-boss-shame-section {
  margin-top: 14px;
}

.wall-boss-shame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wall-boss-shame-card {
  --wall-boss-bg: none;

  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255, 63, 53, .34);
  background:
    linear-gradient(180deg, rgba(12, 2, 2, .96), rgba(0, 0, 0, .96));
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, .86),
    0 0 18px rgba(255, 63, 53, .05);
}

.wall-boss-shame-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) left top / 46px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) left top / 1px 46px no-repeat,

    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) right top / 46px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) right top / 1px 46px no-repeat,

    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) left bottom / 46px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) left bottom / 1px 46px no-repeat,

    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) right bottom / 46px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.54), rgba(255,63,53,.54)) right bottom / 1px 46px no-repeat;
}

.wall-boss-shame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82)),
    radial-gradient(circle at 50% 34%, rgba(255,63,53,.18), transparent 52%);
}

.wall-boss-shame-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.24), rgba(0,0,0,.86)),
    var(--wall-boss-bg) center / cover no-repeat;
  filter: brightness(.82) contrast(1.1) saturate(1.05);
  opacity: .9;
  transform: scale(1.02);
  transition:
    transform .22s ease,
    filter .22s ease,
    opacity .22s ease;
}

.wall-boss-shame-card:hover {
  border-color: rgba(255, 63, 53, .72);
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, .86),
    0 0 24px rgba(255, 63, 53, .14);
}

.wall-boss-shame-card:hover .wall-boss-shame-bg {
  transform: scale(1.06);
  filter: brightness(.96) contrast(1.14) saturate(1.12);
  opacity: 1;
}

.wall-boss-shame-content {
  position: relative;
  z-index: 5;
  min-height: 210px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.wall-boss-shame-kicker {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 63, 53, .86);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wall-boss-shame-card h3 {
  margin: auto 0 16px;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 30px;
  font-weight: 1000;
  line-height: .9;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow:
    0 2px 12px rgba(0,0,0,.95),
    0 0 18px rgba(255,63,53,.18);
}

.wall-boss-shame-card .wall-animal-label {
  width: fit-content;
  min-width: 120px;
  height: 28px;
  padding: 0 12px;
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 63, 53, .32);
  background: rgba(0,0,0,.58);
  color: rgba(255, 63, 53, .92);
}

.wall-boss-shame-card .wall-victim {
  margin-top: auto;
}

.wall-boss-shame-card .wall-empty {
  margin-top: auto;
  min-height: 54px;
  border: 1px dashed rgba(255,63,53,.28);
  background: rgba(0,0,0,.54);
  color: rgba(244,247,239,.62);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wall-offline-shame-card {
  border-color: rgba(255, 63, 53, .46);
}

.wall-offline-shame-card .wall-boss-shame-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(40,0,0,.22), rgba(0,0,0,.88)),
    url('/assets/img/stats-panels/stats-raid-tracker-bg.webp') center / cover no-repeat;
}

.wall-offline-shame-card h3,
.wall-offline-shame-card .wall-boss-shame-kicker {
  color: #ff3f35;
}

@media (max-width: 980px) {
  .wall-boss-shame-grid {
    grid-template-columns: 1fr;
  }

  .wall-boss-shame-card,
  .wall-boss-shame-content {
    min-height: 190px;
  }
}
/* ================================
   WALL OF SHAME - Boss deaths
   Separate from Offline Raiders
================================ */

.wall-boss-shame-section {
  border-color: rgba(255,63,53,.30);
}

.wall-boss-shame-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wall-boss-shame-card {
  --wall-boss-bg: none;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255,63,53,.26);
  background: linear-gradient(180deg, rgba(14,4,4,.98), rgba(0,0,0,.98));
  box-shadow:
    inset 0 0 34px rgba(0,0,0,.82),
    0 0 18px rgba(255,63,53,.04);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.wall-boss-shame-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255,63,53,.13);
}

.wall-boss-shame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.34) 52%, rgba(0,0,0,.82)),
    radial-gradient(circle at 18% 12%, rgba(255,63,53,.16), transparent 38%);
}

.wall-boss-shame-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--wall-boss-bg) center / cover no-repeat,
    linear-gradient(180deg, rgba(14,4,4,.96), rgba(0,0,0,.96));
  filter: brightness(.74) contrast(1.1) saturate(1.06);
  transform: scale(1.02);
  transition: transform .22s ease, filter .22s ease;
}

.wall-boss-shame-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,63,53,.78);
  box-shadow:
    0 0 28px rgba(255,63,53,.16),
    inset 0 0 34px rgba(255,63,53,.035);
}

.wall-boss-shame-card:hover .wall-boss-shame-bg {
  transform: scale(1.065);
  filter: brightness(.82) contrast(1.14) saturate(1.1);
}

.wall-boss-shame-content {
  position: relative;
  z-index: 5;
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wall-boss-shame-kicker {
  display: block;
  color: rgba(244,247,239,.62);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wall-boss-shame-card h3 {
  margin: 14px 0 auto;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 34px;
  line-height: .9;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow:
    0 2px 14px rgba(0,0,0,.96),
    0 0 16px rgba(255,63,53,.20);
}

.wall-boss-shame-card .wall-animal-label {
  width: fit-content;
  min-height: 32px;
  margin: 10px 0 0;
  padding: 0 14px;
}

.wall-boss-shame-card .wall-victim,
.wall-boss-shame-card .wall-empty {
  margin-top: 16px;
}

/* ================================
   WALL OF SHAME - Offline Raiders
   Own section, not part of Boss Shame
================================ */

.wall-offline-shame-section {
  border-color: rgba(255,63,53,.34);
  background:
    linear-gradient(180deg, rgba(13,2,2,.98), rgba(0,0,0,.98));
}

.wall-offline-shame-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.wall-offline-shame-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255,63,53,.34);
  background: linear-gradient(180deg, rgba(14,4,4,.98), rgba(0,0,0,.98));
  box-shadow:
    inset 0 0 34px rgba(0,0,0,.82),
    0 0 18px rgba(255,63,53,.06);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.wall-offline-shame-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255,63,53,.14);
}

.wall-offline-shame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 45%, rgba(0,0,0,.34) 70%, rgba(0,0,0,.82) 100%),
    radial-gradient(circle at 12% 12%, rgba(255,63,53,.16), transparent 38%);
}

.wall-offline-shame-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url('/assets/img/stats-panels/stats-raid-tracker-bg.webp') center / cover no-repeat,
    linear-gradient(180deg, rgba(14,4,4,.96), rgba(0,0,0,.96));
  filter: brightness(.72) contrast(1.12) saturate(1.06);
  transform: scale(1.02);
  transition: transform .22s ease, filter .22s ease;
}

.wall-offline-shame-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,63,53,.82);
  box-shadow:
    0 0 28px rgba(255,63,53,.18),
    inset 0 0 34px rgba(255,63,53,.04);
}

.wall-offline-shame-card:hover .wall-offline-shame-bg {
  transform: scale(1.06);
  filter: brightness(.82) contrast(1.16) saturate(1.12);
}

.wall-offline-shame-content {
  position: relative;
  z-index: 5;
  min-height: 210px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 20px;
}

.wall-offline-shame-kicker {
  display: block;
  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,63,53,.22);
}

.wall-offline-shame-card h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 42px;
  line-height: .9;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow:
    0 2px 14px rgba(0,0,0,.96),
    0 0 16px rgba(255,63,53,.20);
}

.wall-offline-shame-card .wall-victim,
.wall-offline-shame-card .wall-empty {
  margin-top: 0;
  min-height: 86px;
}

@media (max-width: 980px) {
  .wall-boss-shame-grid {
    grid-template-columns: 1fr;
  }

  .wall-offline-shame-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wall-offline-shame-card .wall-victim,
  .wall-offline-shame-card .wall-empty {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .wall-boss-shame-card,
  .wall-boss-shame-content,
  .wall-offline-shame-card,
  .wall-offline-shame-content {
    min-height: 250px;
  }

  .wall-boss-shame-card h3,
  .wall-offline-shame-card h3 {
    font-size: 32px;
  }
}

/* ================================
   WALL OF SHAME - OFFLINE RAIDERS MOCKUP
   Put this at the VERY BOTTOM of wall-of-shame.css
================================ */

.wall-offline-shame-section {
  border-color: rgba(255,63,53,.38);
  background:
    linear-gradient(180deg, rgba(18,2,2,.98), rgba(0,0,0,.99));
}

.wall-offline-shame-section .wall-section-head {
  margin-bottom: 16px;
}

.wall-offline-shame-grid {
  position: relative;
  z-index: 6;
  display: block;
}

.wall-offline-shame-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255,63,53,.42);
  background: #020202;
  box-shadow:
    inset 0 0 48px rgba(0,0,0,.88),
    0 0 22px rgba(255,63,53,.08);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.wall-offline-shame-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) left top / 54px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) left top / 1px 54px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) right top / 54px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) right top / 1px 54px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) left bottom / 54px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) left bottom / 1px 54px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) right bottom / 54px 1px no-repeat,
    linear-gradient(rgba(255,63,53,.70), rgba(255,63,53,.70)) right bottom / 1px 54px no-repeat;
  opacity: .88;
}

.wall-offline-shame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.99) 0%,
      rgba(0,0,0,.97) 31%,
      rgba(0,0,0,.62) 51%,
      rgba(0,0,0,.17) 74%,
      rgba(0,0,0,.62) 100%
    ),
    radial-gradient(circle at 18% 22%, rgba(255,63,53,.18), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0 1px,
      transparent 1px 72px
    );
}

.wall-offline-shame-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url('/assets/img/stats-panels/wall-offline-raiders-bg.webp') right center / cover no-repeat !important;
  filter: brightness(.82) contrast(1.16) saturate(1.08);
  transform: scale(1.015);
  transition:
    transform .24s ease,
    filter .24s ease;
}

.wall-offline-shame-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,63,53,.82);
  box-shadow:
    0 0 34px rgba(255,63,53,.18),
    inset 0 0 48px rgba(255,63,53,.04);
}

.wall-offline-shame-card:hover .wall-offline-shame-bg {
  transform: scale(1.055);
  filter: brightness(.9) contrast(1.2) saturate(1.14);
}

.wall-offline-shame-content {
  position: relative;
  z-index: 6;
  min-height: 380px;
  width: clamp(520px, 50%, 700px);
  padding: 34px 36px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: stretch !important;
  gap: 14px;
  text-align: left !important;
}

.wall-offline-shame-kicker {
  display: block;
  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,63,53,.28);
}

.wall-offline-player-card,
.wall-offline-empty-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255,63,53,.42);
  background:
    linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.94));
  box-shadow:
    inset 0 0 34px rgba(0,0,0,.82),
    0 0 18px rgba(255,63,53,.08);
}

.wall-offline-player-card::before,
.wall-offline-empty-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,63,53,.15);
}

.wall-offline-player-card::after,
.wall-offline-empty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,63,53,.08), transparent 46%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,63,53,.06) 0 2px,
      transparent 2px 9px
    );
  opacity: .42;
}

.wall-offline-player-card > *,
.wall-offline-empty-card > * {
  position: relative;
  z-index: 2;
}

.wall-offline-player-top {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.wall-offline-avatar {
  width: 128px;
  height: 128px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,63,53,.58);
  background: #050505;
  box-shadow:
    inset 0 0 18px rgba(0,0,0,.86),
    0 0 22px rgba(255,63,53,.18);
}

.wall-offline-player-name {
  min-width: 0;
}

.wall-offline-player-name span {
  display: block;
  margin-bottom: 9px;
  color: rgba(244,247,239,.68);
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wall-offline-player-name strong {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: clamp(32px, 3vw, 50px);
  line-height: .9;
  font-weight: 1000;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow:
    0 2px 14px rgba(0,0,0,.96),
    0 0 16px rgba(255,63,53,.16);
}

.wall-offline-stat-row {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 0;
  margin-top: 22px;
  border: 1px solid rgba(255,63,53,.28);
  background: rgba(0,0,0,.46);
}

.wall-offline-stat {
  min-height: 98px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wall-offline-stat + .wall-offline-stat {
  border-left: 1px solid rgba(255,63,53,.26);
}

.wall-offline-stat span {
  color: #ff3f35;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wall-offline-stat strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wall-offline-stat:first-child strong {
  color: #ff3f35;
  font-size: 58px;
  text-shadow: 0 0 18px rgba(255,63,53,.22);
}

.wall-offline-warning {
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255,63,53,.26);
  background: rgba(0,0,0,.58);
  color: rgba(244,247,239,.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.wall-offline-warning b {
  color: #ff3f35;
  font-weight: 1000;
  letter-spacing: .04em;
}

.wall-offline-empty-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wall-offline-empty-card strong {
  color: #ffffff;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wall-offline-empty-card span {
  display: block;
  margin-top: 10px;
  color: rgba(244,247,239,.62);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .wall-offline-shame-content {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 28px;
  }

  .wall-offline-shame-card::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.90) 56%, rgba(0,0,0,.52) 100%),
      radial-gradient(circle at 18% 22%, rgba(255,63,53,.18), transparent 36%);
  }
}

@media (max-width: 720px) {
  .wall-offline-shame-card,
  .wall-offline-shame-content {
    min-height: 430px;
  }

  .wall-offline-player-top,
  .wall-offline-stat-row {
    grid-template-columns: 1fr;
  }

  .wall-offline-player-top {
    text-align: center;
    justify-items: center;
  }

  .wall-offline-stat + .wall-offline-stat {
    border-left: 0;
    border-top: 1px solid rgba(255,63,53,.26);
  }

  .wall-offline-player-name strong {
    white-space: normal;
  }
}
