/* Base layout & components (no external frameworks) */
*{ box-sizing: border-box; }
html,body{ height:100%; }
html{ scrollbar-gutter: stable; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  /* Keep fixed background layers in the same stacking context (prevents odd mobile repaint bugs). */
  z-index: 0;
  isolation: isolate;
  overflow-x: hidden;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: .22;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
  z-index: -3;
}
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70));
  pointer-events: none;
  z-index: -2;
}

/* containers */
.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.main{ padding: 26px 0 72px; }

/* Full-screen map page (iframe uses remaining viewport height) */
body.page-map .main{ padding: 0; }
body.page-map .footer{ display: none; }
.mapframe{
  width: 100%;
  height: calc(100vh - var(--topbar-h, 78px));
  border: 0;
  display: block;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
}
.brand__mark{
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--site-logo-mark-bg,
              radial-gradient(circle at 30% 30%, var(--accent), transparent 55%),
              radial-gradient(circle at 80% 80%, var(--accent2), transparent 55%),
              rgba(255,255,255,.07));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.brand__mark img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight: 800; letter-spacing: .3px; }
.brand__tagline{ font-size: 13px; color: var(--muted); margin-top: 2px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav__link{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s, color .2s;
}
.nav__link:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.nav__link.is-active{ color: var(--text); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.10); }

.topbar__actions{ display:flex; align-items:center; gap: 10px; }
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.burger span{
  display:block;
  height:2px;
  margin: 6px 10px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}
.navdrawer{
  margin-bottom: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
}
.navdrawer__link{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
}
.navdrawer__link:hover{ background: rgba(255,255,255,.08); }
.navdrawer__hr{ height:1px; background: rgba(255,255,255,.12); margin: 10px 0; }

@media (max-width: 860px){
  /* Mobile: keep all background layers synchronized to the viewport. */
  body{
    background: none;
    background-attachment: scroll;
  }
  body::before{
    display: block;
    /* Reduce mobile repaint artifacts from filtered fixed layers. */
    filter: none;
  }
  body::after{
    display: block;
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70)), var(--bg);
    opacity: 1;
    transform: translate3d(0,0,0);
    will-change: transform;
  }
  /* Avoid mobile scroll artifacts from sticky+blur while keeping page background stable. */
  .topbar{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0,0,0,.72);
  }
  .topbar__inner{
    padding: 10px 0;
    gap: 10px;
  }
  .brand__name{
    font-size: 15px;
  }
  .brand__tagline{
    display: none;
  }
  .topbar__actions{
    gap: 8px;
  }
  .topbar__actions .btn--sm{
    display: none;
  }
  .nav{ display:none; }
  .burger{ display:inline-block; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 14px;
  padding: 12px 14px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 750;
  letter-spacing: .2px;
  cursor:pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ background: rgba(255,255,255,.14); }
.btn:active{ transform: translateY(2px); }
.btn--sm{ padding: 10px 12px; border-radius: 12px; font-size: 13px; }
.btn--primary{
  border-color: rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.10));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow:hidden;
}
.btn--primary::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: linear-gradient(120deg, rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0)),
              radial-gradient(500px 250px at 20% 0%, rgba(255,255,255,.16), transparent 60%);
  opacity: .7;
  pointer-events:none;
}
.btn--accent{
  border-color: rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.10));
}
.btn--accent strong{ color: var(--accent); font-weight: 900; }
.btn--ghost{
  background: rgba(255,255,255,.06);
}

/* Full-width button (useful in sidebars/stacked actions) */
.btn--block{
  width: 100%;
}
.btn[disabled], .btn:disabled{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
}

/* Sections */
.section{ padding: 36px 0; }
.section--tight{ padding: 22px 0; }
.kicker{ color: var(--muted); font-weight: 700; letter-spacing: .4px; text-transform: uppercase; font-size: 12px; }
.h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 10px 0 14px;
}

.hero__title{ margin: 10px 0 10px; }
.hero__badges{ display:flex; flex-wrap:wrap; gap:10px; margin: 0 0 14px; }
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.badge::before{
  content:"";
  display:block;
  flex: 0 0 auto;
  align-self:center;
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(124,92,255,.20);
  transform: translateY(0);
}

.h2{
  font-size: 24px;
  margin: 0 0 14px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}
.hero{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--heroGlow);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
}
.hero__inner{
  padding: 34px;
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.hero__copy{
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 6px;
}
.hero__actions{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.hero__note{
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid rgba(255,255,255,.18);
  padding-left: 12px;
  max-width: 72ch;
}
.hero__vote{
  margin-top: 10px;
  font-size: 12px;
}
.hero__vote a{
  color: var(--muted2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.22);
  opacity: .78;
  transition: opacity .2s ease, border-color .2s ease, color .2s ease;
}
.hero__vote a:hover{
  opacity: 1;
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.45);
}

.hero__blurb {
  margin-top: 22px;
  max-width: 72ch;
  color: var(--text);
  opacity: .82;
  line-height: 1.55;
}

.hero__card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.hero__meta{
  display:flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.hero__meta strong{ color: var(--text); }

@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__inner{ padding: 24px; }
}

/* Cards grid */
.grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card--soft{ background: rgba(255,255,255,.05); }
.card__title{ font-weight: 850; margin: 0 0 8px; font-size: 16px; }
.card__text{ color: var(--muted); margin: 0; line-height: 1.55; }


/* Callouts (important notes) */
.callout{
  display:flex;
  gap:12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
}
.callout__icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  flex: 0 0 auto;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}
.callout__content{ min-width: 0; }
.callout__title{ font-weight: 850; margin: 0 0 4px; }
.callout__text{ color: var(--muted); line-height: 1.45; }
.callout--important{
  border-color: rgba(43,228,167,.22);
  background: linear-gradient(180deg, rgba(43,228,167,.10), rgba(0,0,0,.18));
}
.callout--important .callout__icon{
  background: rgba(43,228,167,.14);
  border-color: rgba(43,228,167,.24);
}

/* Feature cards (home) */
.feature-card{ position: relative; overflow: hidden; }
.feature-card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(700px 240px at 10% 10%, rgba(124,92,255,.18), transparent 55%),
              radial-gradient(600px 220px at 90% 20%, rgba(43,228,167,.14), transparent 60%);
  pointer-events:none;
  opacity: .55;
}
.feature-card > *{ position: relative; }
.feature-card__head{ display:flex; gap:12px; align-items:flex-start; }
.feature-card__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.24);
  display:flex; align-items:center; justify-content:center;
  color: var(--text);
  flex: 0 0 auto;
  overflow:hidden;
}
.feature-card__icon img{ width:100%; height:100%; object-fit:cover; }
.feature-card__actions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }

/* Feature list (start page) */
.featurelist{ display:flex; flex-direction:column; gap:12px; margin-top: 10px; }
.featureitem{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.featureitem__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
  font-size: 20px;
  overflow:hidden;
  flex: 0 0 auto;
}
.featureitem__icon img{ width:100%; height:100%; object-fit:cover; }
.featureitem__title{ font-weight: 850; margin: 0 0 6px; }
.featureitem__text{ color: var(--muted); line-height: 1.55; font-size: 14px; }

.col-3{ grid-column: span 3; }
.col-4{ grid-column: span 4; }
.col-6{ grid-column: span 6; }
.col-8{ grid-column: span 8; }
.col-12{ grid-column: span 12; }
@media (max-width: 920px){
  .col-3,.col-4,.col-6,.col-8{ grid-column: span 12; }
}

/* Forms */
.form{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 4px var(--focus);
  background: rgba(0,0,0,.35);
}
.help{
  font-size: 12px;
  color: var(--muted2);
  min-height: 16px;
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px){
  .form__row{ grid-template-columns: 1fr; }
}

/* Alerts (compatible with controllers output) */
.alert{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  margin: 0 0 14px;
}
.alert-success{ border-color: rgba(43,228,167,.35); background: rgba(43,228,167,.10); }
.alert-danger{ border-color: rgba(255,77,109,.35); background: rgba(255,77,109,.10); }
.text-danger{ color: var(--bad) !important; }
.text-success{ color: var(--ok) !important; }

/* Data tables / dashboards */
.tablewrap{ width:100%; overflow:auto; border-radius: var(--radius-sm); border:1px solid rgba(255,255,255,.10); }
.table{ width:100%; border-collapse: collapse; min-width: 820px; }
.table th, .table td{ padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
.table th{ text-align:left; font-size: 12px; letter-spacing: .2px; text-transform: uppercase; color: var(--muted); background: rgba(0,0,0,.20); position: sticky; top: 0; }
.table tr:hover td{ background: rgba(255,255,255,.03); }
.table--colsplit th:nth-child(odd){ background: rgba(255,255,255,.07); }
.table--colsplit th:nth-child(even){ background: rgba(0,0,0,.30); }
.table--colsplit td:nth-child(odd){ background: rgba(255,255,255,.025); }
.table--colsplit td:nth-child(even){ background: rgba(0,0,0,.10); }
.table--colsplit tr:hover td:nth-child(odd){ background: rgba(255,255,255,.045); }
.table--colsplit tr:hover td:nth-child(even){ background: rgba(255,255,255,.02); }
.tag{ display:inline-flex; align-items:center; gap:6px; padding: 4px 8px; border-radius: 999px; border:1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.22); font-size:12px; color: var(--muted); }
.tag--ok{ border-color: rgba(43,228,167,.35); color: rgba(255,255,255,.90); }
.tag--bad{ border-color: rgba(255,77,109,.35); color: rgba(255,255,255,.90); }
.statgrid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat{ padding: 12px 12px; border-radius: var(--radius-sm); border:1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.22); }
.stat__k{ font-size: 12px; color: var(--muted); }
.stat__v{ font-size: 18px; font-weight: 850; margin-top: 4px; word-break: break-word; }
@media (max-width: 980px){ .statgrid{ grid-template-columns: repeat(2, 1fr); } }

/* Leaderboards page */
.leaderboard-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.page-ratings .main .container{
  width: min(1780px, calc(100% - 28px));
}
.page-ratings .card{
  padding: 20px;
}
.leaderboard-zone{
  padding: 14px;
  border-width: 1px;
}
.leaderboard-zone--rank{
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.20));
}
.leaderboard-zone--ladder{
  border-color: rgba(255,170,72,.34);
  background: linear-gradient(180deg, rgba(255,170,72,.12), rgba(0,0,0,.20));
}
.leaderboard-zone:nth-child(4){
  margin-left: 18px;
}
.leaderboard-zone__head{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ratings-toolbar{
  margin-top: 10px;
}
.ratings-filter-form{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ratings-filter-select{
  width: auto;
  min-width: 260px;
  max-width: 100%;
  padding-right: 34px;
}
.leaderboard-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: none;
  overflow: visible;
  padding-right: 2px;
}
.leaderboard-row{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.leaderboard-row:hover{
  background: rgba(255,255,255,.06);
}
.leaderboard-row__place{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted2);
  min-width: 40px;
}
.leaderboard-row__name{
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaderboard-row__meta{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
  min-width: 0;
  overflow-wrap: anywhere;
}
.leaderboard-row__value{
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.leaderboard-sep{
  margin: 10px 0 2px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(255,170,72,.42);
  background: rgba(255,170,72,.10);
  font-size: 12px;
  color: rgba(255,235,210,.94);
  font-weight: 700;
}
.leaderboard-row.is-mine{
  border-color: rgba(43,228,167,.45);
  background: linear-gradient(180deg, rgba(43,228,167,.17), rgba(43,228,167,.09));
  box-shadow: inset 0 0 0 1px rgba(43,228,167,.20);
}
.leaderboard-row.is-mine .leaderboard-row__place{
  color: rgba(189,255,227,.95);
}

@media (max-width: 1260px){
  .page-ratings .main .container{ width: min(1280px, calc(100% - 24px)); }
  .leaderboard-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .leaderboard-zone:nth-child(4){ margin-left: 0; }
}
@media (max-width: 920px){
  .page-ratings .main .container{ width: min(100%, calc(100% - 20px)); }
  .leaderboard-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ratings-filter-select{ min-width: 210px; }
}
@media (max-width: 620px){
  .leaderboard-grid{ grid-template-columns: 1fr; }
  .hero__actions .btn{
    width: 100%;
  }
  .container{
    width: min(100%, calc(100% - 20px));
  }
}

/* Realms page */
.realm-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.realm-card{
  min-height: 100%;
}
.realms-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}
.realms-list li + li{
  margin-top: 6px;
}
@media (max-width: 860px){
  .realm-grid{
    grid-template-columns: 1fr;
  }
}

/* Status */
.statuslist{ display:flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.statusitem{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.pill__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.pill--ok{ border-color: rgba(43,228,167,.35); background: rgba(43,228,167,.10); }
.pill--ok .pill__dot{ background: var(--ok); }
.pill--bad{ border-color: rgba(255,77,109,.35); background: rgba(255,77,109,.10); }
.pill--bad .pill__dot{ background: var(--bad); }
.pill--neutral{ border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.pill--neutral .pill__dot{ background: rgba(255,255,255,.55); }

.small{ font-size: 12px; color: var(--muted2); }
a{ color: rgba(255,255,255,.88); }
a:hover{ color: var(--text); }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  padding: 26px 0 34px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.footer__brand{ font-weight: 900; font-size: 16px; margin-bottom: 6px; }
.footer__muted{ color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer__links{ display:flex; flex-direction: column; gap: 10px; }
.footer__links a{ color: var(--muted); text-decoration:none; font-weight: 650; }
.footer__links a:hover{ color: var(--text); }
.footer__note{
  margin-top: 18px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}
code{ color: rgba(255,255,255,.90); background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 8px; border: 1px solid rgba(255,255,255,.10); }

@media (max-width: 920px){
  .footer__grid{ grid-template-columns: 1fr; }
}
