@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --bg: #070708;
  --panel: #141416;
  --panel2: #1a1a1d;
  --red: #ff2b31;
  --red2: #a60e14;
  --text: #f5f5f5;
  --muted: #929299;
  --line: #29292d;
  --green: #12bd8b;
  --amber: #ffa20c;
  --radius: 24px;
  --max: 1180px;
  --nav: 76px;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
.display,
h1,
h2,
h3,
.tag,
.brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.035em;
}
.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: auto;
}
.site-header {
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
}
.brand-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}
.brand strong {
  color: var(--red);
  font-size: 1.65rem;
}
.brand small {
  letter-spacing: 0.3em;
  font-size: 0.58rem;
}
.desktop-nav {
  display: none;
  gap: 22px;
  align-items: center;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: 0.72rem;
}
.live-pill-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
  box-shadow: 0 0 12px var(--red);
}
main {
  min-height: calc(100vh - 72px);
}
.page-head {
  padding: 44px 0 30px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(2.5rem, 8vw, 4.7rem);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}
.page-head p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 1rem;
}
.hero {
  min-height: 640px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 7, 8, 0.98) 0%,
      rgba(7, 7, 8, 0.78) 42%,
      rgba(7, 7, 8, 0.28) 100%
    ),
    url("../image/bannière.png");
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "EWZ";
  position: absolute;
  right: -0.06em;
  top: 0.1em;
  font: 900 clamp(10rem, 38vw, 32rem) / 0.8 "Barlow Condensed";
  color: transparent;
  -webkit-text-stroke: 1.18px rgba(255, 255, 255, 0.072);
  transform: skew(-7deg);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 74px;
}
.hero-copy {
  min-width: 0;
}
.kicker {
  display: flex;
  align-items: center;
  color: #d0d0d4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.76;
  margin: 20px 0 24px;
  max-width: 850px;
  text-transform: uppercase;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero p {
  color: #c3c3c7;
  max-width: 580px;
  font-size: 1rem;
}
.hero-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 43, 49, 0.42);
  border-radius: 20px;
  background: #050506;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}
.hero-poster img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: white;
  padding: 13px 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.btn:hover {
  border-color: var(--red);
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
}
.section {
  padding: 62px 0;
}
.section.alt {
  background: #0c0c0e;
  border-block: 1px solid #18181b;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: clamp(2rem, 6vw, 3.3rem);
  text-transform: uppercase;
}
.section-title:before {
  content: "";
  width: 6px;
  height: 36px;
  background: var(--red);
  border-radius: 5px;
}
.grid {
  display: grid;
  gap: 16px;
}
.partners {
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.partner {
  min-height: 210px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.partner-logo {
  font: 900 2.2rem/1 "Barlow Condensed";
  color: white;
}
.partner-logo img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
  background: #050506;
}
.partner small,
.muted {
  color: var(--muted);
}
.partner b {
  color: var(--red);
}
.live-card {
  display: grid;
  gap: 20px;
}
.live-screen {
  aspect-ratio: 16/9;
  min-height: 230px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(255, 43, 49, 0.15), transparent 50%), #0a0a0b;
  border: 1px solid var(--line);
}
.live-screen .play {
  font-size: 2rem;
  color: var(--red);
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.stat {
  background: var(--panel);
  padding: 20px;
  text-align: center;
}
.stat strong {
  font: 800 2.6rem "Barlow Condensed";
}
.stat small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
}
.roster-list {
  grid-template-columns: 1fr;
}
.roster h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}
.roster-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.count,
.tag {
  background: #28282c;
  padding: 7px 12px;
  border-radius: 999px;
  color: #d9d9dd;
  font-weight: 700;
}
.tag {
  background: var(--red);
  color: #fff;
  border-radius: 9px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.player {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #651014, #1a0708);
  border: 2px solid var(--red);
  font: 800 1.2rem "Barlow Condensed";
}
.player > img.avatar,
.staff-card > img.avatar {
  object-fit: cover;
  background: #080809;
}
.platform-badge {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.platform-badge svg {
  width: 18px;
  height: 18px;
  display: block;
}
.player strong {
  display: block;
}
.player small {
  color: var(--muted);
}
.role {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
}
.tier-section {
  margin-bottom: 44px;
}
.tier-label {
  font-size: 1.35rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-label:before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}
.tier-a:before {
  background: var(--amber);
}
.weapon {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
}
.weapon:has(.weapon-image) {
  grid-template-columns: 52px 92px 1fr auto;
}
.grade {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--red);
  display: grid;
  place-items: center;
  font: 800 1.7rem "Barlow Condensed";
}
.tier-a .grade {
  background: var(--amber);
}
.weapon h3 {
  margin: 0;
  font-size: 1.45rem;
}
.pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.pill {
  background: #29292d;
  color: #b8b8bd;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.72rem;
}
.news-grid {
  grid-template-columns: 1fr;
}
.news-hero {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at 72% 30%, #4a4d55, transparent 22%),
    linear-gradient(135deg, #1e191d, #0b0b0d);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-hero:before {
  content: "BO7";
  position: absolute;
  right: 3%;
  top: 5%;
  font: 900 9rem "Barlow Condensed";
  color: rgba(255, 255, 255, 0.06);
}
.news-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.news-content h2,
.news-content p,
.news-content small,
.news-content .tag {
  position: relative;
  z-index: 1;
}
.news-content p {
  margin: 0;
  max-width: 58ch;
}
.news-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
}
.thumb {
  height: 92px;
  border-radius: 13px;
  background: linear-gradient(145deg, #41434a, #121216);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  font: 800 1.8rem "Barlow Condensed";
  color: #777;
}
.news-card h3 {
  margin: 6px 0;
  font-size: 1.15rem;
}
.discord {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  padding: 0 30px 30px;
  overflow: hidden;
  border-color: rgba(255, 43, 49, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 43, 49, 0.08), transparent 42%),
    var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.discord-banner {
  position: relative;
  height: 180px;
  margin-inline: -30px;
  background:
    linear-gradient(90deg, rgba(9, 9, 12, 0.08), rgba(9, 9, 12, 0.34)),
    url("../image/bannière.png");
  background-size: cover;
  background-position: center;
}
.discord-sync span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.discord-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.discord-logo {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  padding: 5px;
  border: 5px solid var(--panel);
  border-radius: 28px;
  background: #08080a;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.discord-logo img {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
}
.discord-identity {
  min-width: 0;
  padding-top: 42px;
}
.discord-identity h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}
.discord-identity p {
  max-width: 650px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.discord-kicker {
  color: #a9b1ff;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.discord-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.discord-traits span {
  padding: 6px 10px;
  border: 1px solid rgba(88, 101, 242, 0.28);
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.08);
  color: #c5c9ff;
  font-size: 0.68rem;
  font-weight: 700;
}
.discord-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  background: transparent;
}
.discord-stats .stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 5, 7, 0.5);
}
.discord-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}
.discord .btn {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0;
  background: #5865f2;
  border-color: #5865f2;
}
.discord-refresh {
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0c0f;
  color: var(--text);
  font-weight: 750;
}
.discord-refresh:disabled {
  opacity: 0.45;
  cursor: wait;
}
.discord-sync {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.68rem;
}
.discord-sync.connected {
  color: var(--green);
}
.discord-sync.connected span {
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}
.discord-sync.loading span {
  background: #ffbd2e;
  animation: livePulse 1s infinite alternate;
}
@keyframes livePulse {
  from {
    opacity: 0.38;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.discord-sync.error {
  color: #ffbd75;
}
.discord-sync.error span {
  background: #ff9c38;
}
.post {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
}
.social-icon {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  background: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  overflow: hidden;
}
.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.form-layout {
  display: grid;
  gap: 24px;
}
.conditions {
  border-color: var(--red2);
}
.conditions ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.conditions li {
  margin: 13px 0;
  padding-left: 30px;
  position: relative;
  color: #c9c9ce;
}
.conditions li:before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  color: #b4b4ba;
  font-size: 0.84rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--panel);
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(255, 43, 49, 0.3);
  border-color: var(--red);
}
.cms-item > img {
  width: 64px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.weapon-image {
  width: 92px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
}
.weapon-description {
  margin: 10px 0 0;
  line-height: 1.45;
}
.news-card .thumb {
  background-position: center;
  background-size: cover;
}
.news-hero-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: inherit;
}
.empty-state {
  padding: 32px;
  text-align: center;
  color: var(--muted);
}
.form-status {
  min-height: 24px;
  color: var(--green);
}
.org {
  display: grid;
  gap: 28px;
}
.org-level {
  display: grid;
  gap: 14px;
}
.staff-card {
  text-align: center;
}
.staff-card .avatar {
  margin: 0 auto 12px;
  width: 72px;
  height: 72px;
}
.staff-card h3 {
  margin: 0;
}
.staff-card p {
  margin: 4px 0;
  color: var(--red);
}
.admin-wrap {
  max-width: 1040px;
}
.notice {
  background: #281d0b;
  border: 1px solid #71501a;
  color: #ffd690;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
}
.admin-section {
  margin-top: 20px;
}
.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}
.cms-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.cms-toolbar strong,
.cms-toolbar small {
  display: block;
}
.cms-toolbar small {
  margin-top: 3px;
  color: var(--muted);
}
.cms-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.cms-tabs button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 750;
}
.cms-tabs button.active {
  border-color: var(--red);
  background: var(--red);
  color: white;
}
.cms-panel {
  display: none;
}
.cms-panel.active {
  display: block;
}
.cms-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.cms-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0d0f;
}
.cms-item:has(> img) {
  grid-template-columns: 58px minmax(0, 1fr) auto auto;
}
.cms-item > img,
.admin-avatar {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: #050506;
}
.cms-item strong,
.cms-item small,
.cms-item code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-item small,
.cms-item code {
  color: var(--muted);
  font-size: 0.72rem;
}
.danger-button,
.upload-button {
  padding: 9px 12px;
  border: 1px solid rgba(255, 43, 49, 0.45);
  border-radius: 9px;
  background: rgba(255, 43, 49, 0.08);
  color: #ff767a;
  font-weight: 750;
  font-size: 0.72rem;
  text-align: center;
  cursor: pointer;
}
.upload-button {
  border-color: var(--line);
  color: white;
  background: var(--panel2);
}
.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.player-admin {
  grid-template-columns: 58px minmax(110px, 1fr) auto auto auto;
}
.player-add-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cms-inline {
  display: grid;
  gap: 12px;
}
.code-editor {
  min-height: 520px !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  line-height: 1.6;
  tab-size: 2;
}
.cms-toast {
  position: sticky;
  bottom: 20px;
  min-height: 24px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
}
.bottom-nav {
  position: fixed;
  z-index: 40;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: calc(var(--nav) + env(safe-area-inset-bottom));
  padding: 5px 8px env(safe-area-inset-bottom);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(8, 8, 10, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #76767f;
  min-width: 0;
  min-height: 64px;
  padding: 4px 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  line-height: 1;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav a.active {
  color: var(--red);
}
.nav-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: currentColor;
}
.nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.site-footer {
  padding: 55px 0 calc(var(--nav) + 40px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.76rem;
}
.empty {
  color: var(--muted);
  padding: 24px;
  text-align: center;
}
.success {
  padding: 20px;
  border: 1px solid var(--green);
  border-radius: 14px;
  background: rgba(18, 189, 139, 0.08);
}
.social-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0b0b0d, #09090a);
}
.social-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.social-heading .section-title {
  margin-top: 10px;
}
.ewz-whisper {
  position: absolute;
  right: -0.02em;
  bottom: -0.1em;
  font: 900 clamp(5rem, 18vw, 11rem) / 0.7 "Barlow Condensed";
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.075);
  pointer-events: none;
}
.social-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.social-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #242428;
  border-radius: 20px;
  background: #030304;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 43, 49, 0.62);
  background: #09090a;
}
.social-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #242428;
  border-radius: 16px;
  background: #000;
}
.social-logo img {
  width: 34px;
  height: 34px;
}
.social-card strong {
  display: block;
  font: 800 1.45rem "Barlow Condensed";
  letter-spacing: 0.04em;
}
.social-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}
.social-arrow {
  color: var(--red);
  font-size: 1.3rem;
}
@media (min-width: 720px) {
  :root {
    --max: 1180px;
  }
  body {
    padding-bottom: calc(var(--nav) + env(safe-area-inset-bottom));
  }
  .shell {
    width: min(calc(100% - 56px), var(--max));
  }
  .site-header {
    padding-inline: 28px;
  }
  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: 100px 0;
  }
  .hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }
  .live-card {
    grid-template-columns: 1.5fr 0.7fr;
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .roster-list {
    grid-template-columns: 1fr 1fr;
  }
  .news-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }
  .form-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .cms-inline {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .org-level {
    grid-template-columns: repeat(3, 1fr);
  }
  .org-level:first-child {
    grid-template-columns: minmax(260px, 420px);
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
  .site-header {
    padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  }
  .desktop-nav {
    display: flex;
  }
  .bottom-nav {
    display: none;
  }
  .site-footer {
    padding-bottom: 55px;
  }
}
@media (min-width: 720px) and (max-width: 899px) {
  .hero-content {
    display: block;
  }
  .hero-poster {
    width: min(100%, 720px);
    margin: 40px auto 0;
  }
}
@media (max-width: 1023px) {
  body {
    padding-bottom: calc(var(--nav) + env(safe-area-inset-bottom));
  }
  .desktop-nav {
    display: none;
  }
}
@media (max-width: 719px) {
  .site-header {
    height: 64px;
  }
  .site-header .live-pill {
    display: none;
  }
  .hero {
    min-height: min(700px, calc(100svh - 64px));
    background-position: 58% center;
  }
  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
    line-height: 0.8;
  }
  .hero-content {
    display: block;
    padding-block: 74px 58px;
  }
  .hero-poster {
    margin-top: 32px;
    border-radius: 16px;
  }
  .section {
    padding: 46px 0;
  }
  .page-head {
    padding-top: 34px;
  }
  .card {
    padding: 19px;
  }
  .partners {
    grid-auto-columns: minmax(78vw, 1fr);
  }
  .news-card {
    grid-template-columns: 82px 1fr;
  }
  .news-hero {
    min-height: 350px;
  }
  .live-screen {
    min-height: 190px;
  }
  .social-card {
    grid-template-columns: 54px 1fr auto;
  }
  .social-logo {
    width: 54px;
    height: 54px;
  }
  .discord {
    padding: 0 18px 20px;
  }
  .discord-banner {
    height: 116px;
    margin-inline: -18px;
  }
  .discord-top {
    align-items: flex-start;
    gap: 13px;
    margin-top: -30px;
  }
  .discord-logo {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-width: 4px;
    border-radius: 23px;
  }
  .discord-logo img {
    border-radius: 15px;
  }
  .discord-identity {
    padding-top: 34px;
  }
  .discord-identity p {
    margin-left: calc(-76px - 13px);
    margin-top: 18px;
  }
  .discord-kicker {
    display: none;
  }
  .discord-stats .stat {
    padding: 14px 7px;
  }
  .discord-stats .stat strong {
    font-size: 1.9rem;
  }
  .discord-actions {
    grid-template-columns: 1fr;
  }
  .discord-refresh {
    min-height: 44px;
  }
  .desktop-only {
    display: none;
  }
  .weapon {
    grid-template-columns: 48px 1fr;
  }
  .weapon:has(.weapon-image) {
    grid-template-columns: 48px 72px 1fr;
  }
  .weapon > span:last-child {
    display: none;
  }
  .bottom-nav a:nth-child(6) {
    display: flex;
  }
  .cms-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .player-admin {
    grid-template-columns: 52px 1fr;
  }
  .player-admin .upload-button,
  .player-admin .danger-button {
    width: 100%;
  }
}
@media (max-width: 390px) {
  :root {
    --nav: 72px;
  }
  .bottom-nav {
    padding-inline: 2px;
  }
  .bottom-nav a {
    font-size: 0.58rem;
  }
  .nav-icon {
    width: 26px;
    height: 26px;
  }
  .brand-image {
    width: 36px;
    height: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
