:root {
  --bg: #090403;
  --panel: #160807;
  --panel2: #21100b;
  --card: #f3dfaa;
  --ink: #28140d;
  --muted: #6f4a22;
  --red: #5b1715;
  --red2: #7b211d;
  --gold: #b8832f;
  --gold2: #e4bd67;
  --line: rgba(92, 38, 22, .25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 131, 47, .22), transparent 420px),
    radial-gradient(circle at bottom right, rgba(123, 33, 29, .22), transparent 460px),
    linear-gradient(135deg, #080302, #190806 45%, #070202);
  color: var(--ink);
  font-family: Inter, Segoe UI, Arial, sans-serif;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 270px;
  background:
    linear-gradient(180deg, rgba(123, 33, 29, .75), rgba(22, 8, 7, .98)),
    var(--panel);
  border-right: 2px solid var(--gold);
  padding: 28px 20px;
  color: #f8e7b7;
  overflow-y: auto;
}

.side-logo {
  width: 92px;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.sidebar h2 {
  text-align: center;
  margin: 0;
  color: var(--gold2);
  font-family: Georgia, serif;
}

.sidebar p {
  text-align: center;
  margin: 6px 0 24px;
  color: #d7b86a;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar a {
  color: #f8e7b7;
  text-decoration: none;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(228,189,103,.16);
}

.sidebar a:hover {
  background: rgba(228,189,103,.16);
  color: #fff2c7;
}

.discord-button {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #2b1408 !important;
  border-color: rgba(255,255,255,.18) !important;
}

.page {
  margin-left: 270px;
  padding: 42px;
  max-width: 1250px;
}

.hero {
  min-height: 390px;
  border-radius: 26px;
  padding: 48px;
  display: flex;
  align-items: center;
  color: #f7e8bd;
  background:
    linear-gradient(135deg, rgba(91,23,21,.92), rgba(33,16,11,.82)),
    url("hero.png");
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(228,189,103,.28);
  border-radius: 20px;
  pointer-events: none;
}

.hero-text-box {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .8rem;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 8px 0 12px;
  line-height: .9;
  text-shadow: 0 5px 0 rgba(91,23,21,.75);
}

.hero p {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.credit {
  color: #dfc27b;
  font-style: italic;
}

.wide-banner {
  width: 100%;
  display: block;
  border-radius: 22px;
  margin: 28px 0;
  border: 2px solid var(--gold);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.card {
  margin-top: 28px;
  padding: 28px 34px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.08)),
    var(--card);
  border: 2px solid rgba(184,131,47,.7);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.card h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: 2.1rem;
  color: var(--red);
  border-bottom: 2px solid rgba(91,23,21,.22);
  padding-bottom: 12px;
}

.card h3 {
  color: var(--red2);
  margin: 24px 0 8px;
}

.card ul {
  margin-top: 0;
}

p,
li {
  line-height: 1.65;
}

li {
  margin-bottom: 8px;
}

.tiers,
.grid {
  display: grid;
  gap: 14px;
}

.tiers {
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
}

.tiers div,
.grid article,
.note,
.danger {
  background: rgba(91,23,21,.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.tiers b {
  display: block;
  color: var(--red);
}

.tiers span,
.grid span {
  color: var(--muted);
  font-weight: 800;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  margin-top: 16px;
}

.grid.small {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid article h3 {
  margin-top: 0;
}

.note {
  border-left: 5px solid var(--gold);
  font-weight: 700;
}

.danger {
  border-left: 5px solid #8f1f1b;
  background: rgba(143,31,27,.12);
  font-weight: 800;
  color: #661411;
  margin-top: 18px;
}

.banned-list {
  columns: 3;
  column-gap: 46px;
  margin: 0;
  padding-left: 22px;
}

.banned-list li {
  break-inside: avoid;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

#enforcement.card {
  margin-bottom: 28px;
}

.footer {
  text-align: center;
  color: #d7b86a;
  padding: 34px 20px 54px;
}

.footer img {
  width: 70px;
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.footer p {
  margin: 0;
  color: var(--gold2);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer span {
  display: block;
  margin-top: 6px;
  color: #d7b86a;
}

.footer a {
  display: inline-block;
  margin-top: 18px;
  color: #2b1408;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  text-decoration: none;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

@media (max-width: 900px) {
  .sidebar {
    position: static;
    width: auto;
    border-right: 0;
    border-bottom: 2px solid var(--gold);
  }

  .sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .page {
    margin-left: 0;
    padding: 20px;
  }

  .hero {
    text-align: center;
    padding: 32px 22px;
  }

  .tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .banned-list {
    columns: 2;
  }
}

@media (max-width: 520px) {
  .banned-list {
    columns: 1;
  }
}