:root {
  --bg: #07080a;
  --panel: #111318;
  --panel-2: #171b22;
  --text: #f4f7fb;
  --muted: #9ca7b7;
  --line: #2b323d;
  --red: #d71920;
  --orange: #ff8a00;
  --yellow: #ffd42a;
  --green: #14d850;
  --blue: #32a7ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, .42);
  --glow: 0 0 26px rgba(255, 138, 0, .16);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #050608 0%, #0c0e12 42%, #090a0d 100%);
  color: var(--text);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
body.modal-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px max(14px, calc((100vw - 1180px) / 2));
  background: rgba(5, 6, 8, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.brand img { width: 64px; height: 44px; object-fit: contain; }
.topbar nav { display: flex; align-items: center; gap: 14px; color: #dfe6f0; font-size: 14px; }
.topbar nav a { padding: 8px 4px; }
.lang-link { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.menu-toggle { display: none; background: var(--panel); color: var(--text); border: 1px solid var(--line); padding: 8px 10px; border-radius: 6px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(135deg, #e61d26, #ff8a00);
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.button.small { min-height: 36px; padding: 0 12px; font-size: 14px; }
.button.ghost { background: transparent; border: 1px solid #596273; }
.button.danger { background: #b9141a; }
.actions-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.owner-tools { display: grid; gap: 12px; margin: 14px 0; }
.transfer-form { padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: rgba(0, 0, 0, .18); }
.thumb { width: 120px; height: 78px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); margin-bottom: 8px; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  margin-left: calc((100vw - min(1180px, calc(100vw - 28px))) / -2);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,8,10,.08), rgba(7,8,10,.48) 68%, var(--bg));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-copy { align-self: center; padding: 54px 0 54px 42px; }
.eyebrow { color: var(--yellow); text-transform: uppercase; font-size: 13px; font-weight: 900; }
h1, h2, h3 { line-height: 1.06; margin: 0 0 14px; }
h1 { font-size: clamp(48px, 8vw, 112px); letter-spacing: .01em; text-transform: uppercase; }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 21px; }
.page-head h1 {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 680px;
}
.profile-head h1,
.panel.topic h1 {
  font-size: clamp(30px, 3.6vw, 52px);
  text-transform: none;
}
.forum-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 760px;
}
.hero-copy p:not(.eyebrow) { font-size: 19px; color: #d3d9e2; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -22px 0 42px;
  position: relative;
  z-index: 2;
}
.feature-band article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(18, 20, 25, .96));
  box-shadow: var(--shadow);
}
.feature-band strong { color: var(--yellow); text-transform: uppercase; font-size: 18px; }
.feature-band span { color: #dbe3ee; }

.grid-section, .page-head, .panel, .cards, .topic-list { margin: 30px 0; }
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0 18px;
}
.page-head p {
  max-width: 460px;
  margin: 0 0 10px;
  font-size: 16px;
}
.page-head p, .muted { color: var(--muted); }
.panel, .card, .topic-row {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 38%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.panel { padding: 22px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 16px; overflow: hidden; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); border-color: rgba(255, 138, 0, .62); box-shadow: var(--shadow), var(--glow); }
.card-img {
  width: 100%;
  margin: 0 0 14px;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #050607;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
}
.event-card .card-img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at center, rgba(255, 138, 0, .14), transparent 55%),
    #050607;
}
.card h2 { font-size: clamp(22px, 2vw, 34px); text-transform: none; overflow-wrap: anywhere; }
.card h3 { overflow-wrap: anywhere; }
.online-users {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.online-user-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(17,19,24,.96));
  transition: transform .18s ease, border-color .18s ease;
}
.online-user-card:hover { transform: translateY(-2px); border-color: rgba(20, 216, 80, .55); }
.online-avatar {
  grid-row: span 3;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(20, 216, 80, .72);
  background: #050607;
}
.online-avatar.fallback {
  display: grid;
  place-items: center;
  color: #071008;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  font-weight: 900;
}
.online-user-card strong,
.online-user-card small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.online-user-card small { color: var(--muted); }
.online-dot { color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.online-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.empty-state {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .025);
  text-align: center;
}
.split { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.tag { display: inline-flex; padding: 5px 9px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 800; }
.tag.ok { color: #06140b; background: var(--green); border-color: var(--green); }
.tag.owner {
  color: #181006;
  border-color: #ffd166;
  background: linear-gradient(135deg, #ffd166, #ff8a00);
  box-shadow: 0 0 24px rgba(255, 138, 0, .22);
}
.tag.donor {
  color: #fff;
  border-color: #a855f7;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  box-shadow: 0 0 24px rgba(168, 85, 247, .24);
}
.donation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: center;
  border-color: rgba(168, 85, 247, .42);
}
.donor-button {
  background: linear-gradient(135deg, #7c3aed, #d946ef);
}

.auth-wrap { min-height: 74vh; display: grid; place-items: center; }
.form { display: grid; gap: 14px; }
.grid-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-form .full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; color: #cbd3df; font-weight: 700; }
input, textarea, select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #3a4351;
  border-radius: 6px;
  background: #090b0f;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }

.event-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; margin: 34px 0; align-items: start; }
.event-ticket-page {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, 1.18fr);
  gap: 26px;
  margin: 34px 0;
  align-items: start;
}
.event-poster {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: linear-gradient(180deg, #151922, #090b0f);
  box-shadow: var(--shadow);
}
.ticket-panel {
  position: sticky;
  top: 88px;
  padding: 28px;
  border: 1px solid rgba(255, 138, 0, .28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,138,0,.1), transparent 34%),
    linear-gradient(180deg, #171b23, #0d0f14);
  box-shadow: var(--shadow), var(--glow);
}
.ticket-panel h1 { font-size: clamp(38px, 5.6vw, 76px); }
.ticket-price {
  display: grid;
  gap: 4px;
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #090b0f;
}
.ticket-price span, .ticket-price small { color: var(--muted); }
.ticket-price strong { font-size: clamp(32px, 5vw, 58px); color: var(--yellow); line-height: 1; }
.ticket-button { min-width: 190px; min-height: 52px; font-size: 17px; text-transform: uppercase; }
.trophy-preview .card-img { object-fit: contain; background: #050607; }
.wide-img {
  width: 100%;
  max-height: min(82vh, 820px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #050607;
  box-shadow: var(--shadow), var(--glow);
}
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.stats span { padding: 12px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); }
.stats strong { display: block; color: var(--text); }

.profile-head { display: flex; gap: 20px; align-items: center; }
.avatar { width: 130px; height: 130px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); background: #050607; }
.trophy .card-img { object-fit: contain; background: #050607; }
.trophy-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 10px;
}
.trophy-grid .trophy {
  padding: 10px;
  min-height: 0;
}
.trophy-grid .card-img {
  aspect-ratio: 1 / 1;
  height: auto;
  margin-bottom: 9px;
  object-fit: contain;
  background: #050607;
}
.trophy-grid h3 {
  font-size: 14px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.trophy-grid p {
  margin: 0 0 8px;
  color: #cbd3df;
  font-size: 12px;
  line-height: 1.35;
}
.trophy-grid span {
  color: var(--muted);
  font-size: 11px;
}
.trophy-grid .empty-state {
  grid-column: 1 / -1;
  min-height: 92px;
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; }
th { color: var(--yellow); }

.topic-list { display: grid; gap: 10px; }
.topic-row { display: grid; gap: 7px; padding: 18px; }
.topic-title-link strong { display: inline-flex; gap: 8px; align-items: center; }
.profile-inline-link { color: var(--yellow); font-weight: 900; }
.profile-inline-link:hover { color: var(--orange); }
.topic-row.pinned { border-color: rgba(255, 212, 42, .54); background: linear-gradient(180deg, rgba(255, 212, 42, .08), rgba(18, 20, 25, .96)); }
.pin-label {
  display: inline-flex;
  margin-right: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--yellow);
  color: #151004;
  font-size: 12px;
  text-transform: uppercase;
}
.topic-row span, .topic span { color: var(--muted); font-size: 14px; }
.topic-row small { color: #cbd3df; }
.reply { margin-top: 12px; }
.admin-tools { display: grid; gap: 16px; }
.danger-zone { border-color: rgba(215, 25, 32, .55); }

.chat-box {
  display: grid;
  gap: 12px;
  max-height: 560px;
  overflow: auto;
}
.chat-message {
  width: min(760px, 88%);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}
.chat-message.mine {
  justify-self: end;
  border-color: rgba(255, 138, 0, .5);
  background: rgba(255, 138, 0, .08);
}
.chat-message strong { display: block; margin-bottom: 4px; }
.chat-message span, .chat-message small { color: var(--muted); font-size: 12px; }
.user-admin-card { display: grid; gap: 14px; }
.admin-search {
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
}
.admin-search .actions-row {
  margin-bottom: 0;
}

.forum-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin: 34px 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(10, 11, 15, .84), rgba(10, 11, 15, .42)),
    linear-gradient(90deg, rgba(215,25,32,.16), rgba(255,138,0,.06));
  background-color: #111318;
  background-size: cover, cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow), var(--glow);
}
.forum-hero p:not(.eyebrow) { color: #dbe3ee; max-width: 760px; font-size: 18px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
}
.category-pill {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 20, 25, .86);
}
.category-pill.active, .category-pill:hover {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,138,0,.18), rgba(18,20,25,.92));
}
.category-pill strong { color: var(--text); font-size: 18px; text-transform: uppercase; }
.category-pill span { color: var(--muted); font-size: 13px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 20px;
  transform: none;
}
.modal.open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 138, 0, .42);
  border-radius: 8px;
  background: linear-gradient(180deg, #171b23, #0b0d11);
  box-shadow: var(--shadow), var(--glow);
}
.modal-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #090b0f;
  color: var(--text);
  padding: 8px 10px;
  cursor: pointer;
}
.rich-editor-wrap { display: grid; gap: 0; border: 1px solid #3a4351; border-radius: 8px; overflow: hidden; background: #090b0f; }
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #11151c;
}
.editor-toolbar button, .editor-toolbar select, .editor-toolbar input[type="color"] {
  width: auto;
  min-height: 36px;
}
.editor-toolbar button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #090b0f;
  color: var(--text);
  font-weight: 900;
  padding: 0 10px;
  cursor: pointer;
}
.rich-editor {
  min-height: 260px;
  padding: 16px;
  outline: none;
  color: var(--text);
}
.rich-editor:empty::before { content: attr(data-placeholder); color: var(--muted); }
.rich-content { color: #eef3fb; overflow-wrap: anywhere; }
.rich-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0; }
.rich-content blockquote { border-left: 4px solid var(--orange); margin-left: 0; padding-left: 14px; color: #dbe3ee; }

.flash {
  margin: 18px 0;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.flash.success { background: rgba(20, 216, 80, .12); border-color: rgba(20, 216, 80, .45); }
.flash.error { background: rgba(215, 25, 32, .14); border-color: rgba(215, 25, 32, .5); }

.footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 32px 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.server-band {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(255, 138, 0, .22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,138,0,.12), transparent 46%),
    linear-gradient(180deg, #151922, #0b0d11);
  box-shadow: var(--shadow), var(--glow);
}
.server-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.server-card {
  display: grid;
  align-content: space-between;
  gap: 5px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}
.server-card:hover { border-color: var(--orange); box-shadow: var(--glow); }
.server-card strong { color: var(--text); font-size: 18px; }
.server-card span { color: var(--muted); font-size: 13px; }
.server-card small { color: var(--green); font-weight: 900; text-transform: uppercase; }
.server-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.server-lock {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 212, 42, .28);
  border-radius: 8px;
  background: rgba(255, 212, 42, .07);
}
.server-lock strong { color: var(--yellow); font-size: 14px; }
.server-lock span { color: #dbe3ee; }
.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 38px;
}
.pagination a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #090b0f;
  color: var(--text);
  font-weight: 900;
}
.pagination a.active, .pagination a:hover {
  border-color: var(--orange);
  background: linear-gradient(135deg, #d71920, #ff8a00);
}

.market-card { display: grid; align-content: start; gap: 10px; }
.market-summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tag.sold { color: #fff; background: #b9141a; border-color: #b9141a; }
.price-big { display: block; color: var(--yellow); font-size: clamp(32px, 4vw, 52px); margin: 10px 0; line-height: 1; }
.detail-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #050607;
}
.listing-detail {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(280px, 1.1fr);
  gap: 22px;
}

.regulation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 18px;
  align-items: start;
  margin: 34px 0;
}
.regulation-content h2 { font-size: clamp(30px, 4vw, 54px); }
.regulation-file { position: sticky; top: 88px; }
.regulation-file iframe {
  width: 100%;
  height: 520px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050607;
}

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .topbar nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    padding: 12px;
    background: #090b0f;
    border: 1px solid var(--line);
    border-radius: 8px;
    flex-direction: column;
    align-items: stretch;
  }
  .topbar nav.open { display: flex; }
  .brand span { font-size: 13px; }
  .hero, .event-detail, .event-ticket-page { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { margin: 0; min-height: 390px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(8,9,11,.08), var(--bg)); }
  .hero-copy { padding: 26px 0; }
  .cards.three, .grid-form, .stats, .feature-band, .category-grid, .server-band, .server-list, .regulation-layout, .listing-detail, .donation-panel, .online-users { grid-template-columns: 1fr; }
  .trophy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-head { display: block; }
  .profile-head { align-items: flex-start; flex-direction: column; }
  .forum-hero { display: grid; padding: 22px; }
  .ticket-panel { position: static; padding: 20px; }
  .regulation-file { position: static; }
  .regulation-file iframe { height: 420px; }
  .ticket-panel h1 { font-size: clamp(34px, 12vw, 54px); }
  .event-poster { padding: 8px; }
  .modal { padding: 10px; }
  .modal-panel { padding: 18px; }
  .editor-toolbar { gap: 6px; }
  .editor-toolbar select { min-width: 120px; }
  h1 { font-size: clamp(34px, 11vw, 58px); }
  .page-head h1 { font-size: clamp(30px, 9vw, 44px); }
  .forum-hero h1 { font-size: clamp(36px, 11vw, 54px); }
}

@media (max-width: 520px) {
  .trophy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
