/* Hugo Casino IE: dark lobby skin, sidebar + rails, orange accent */
:root {
  --bg: #150e0b;
  --bg2: #1b120e;
  --panel: #221712;
  --panel2: #2b1d16;
  --line: #3d2a21;
  --txt: #f4ece7;
  --mut: #b39e93;
  --red: #e5810c;
  --red2: #ffa42a;
  --gold: #ffcb6b;
  --ok: #35c77b;
  --warn: #f0a53a;
  --side: 218px;
  --top: 62px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font: 16px/1.65 "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--red2);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ---------- top bar ---------- */
.hg-top {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--top);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: #170f0c;
  border-bottom: 1px solid var(--line);
}
.hg-burger {
  background: var(--panel2);
  border: 1px solid var(--line);
  color: var(--mut);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}
.hg-logo img {
  height: 34px;
  width: auto;
}
.hg-search svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.hg-burger svg {
  width: 20px;
  height: 20px;
}
.hg-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1422;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--mut);
  font-size: 14px;
}
.hg-top-btns {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.hg-btn {
  display: inline-block;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--panel2);
  color: var(--txt);
  cursor: pointer;
}
.hg-btn:hover {
  text-decoration: none;
  border-color: #35405c;
}
.hg-btn-red {
  background: linear-gradient(180deg, var(--red2), var(--red));
  border-color: #ff6072;
  color: #fff;
  box-shadow: 0 0 0 rgba(226, 33, 58, 0.6);
  animation: mcPulse 2.6s ease-in-out infinite;
}
.hg-btn-red:hover {
  filter: brightness(1.08);
}
@keyframes mcPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(226, 33, 58, 0.55);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(226, 33, 58, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hg-btn-red {
    animation: none;
  }
}

/* ---------- sidebar ---------- */
.hg-side {
  position: fixed;
  top: var(--top);
  left: 0;
  bottom: 0;
  width: var(--side);
  background: #0d111c;
  border-right: 1px solid var(--line);
  overflow-y: auto;
  padding: 12px 0 24px;
  z-index: 30;
}
.hg-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #c3cade;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hg-side a:hover {
  background: var(--panel);
  color: #fff;
  text-decoration: none;
}
.hg-side a svg {
  width: 18px;
  height: 18px;
  color: var(--red2);
  flex: 0 0 auto;
}
.hg-side-head {
  padding: 8px 16px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.hg-side-head b {
  color: var(--red2);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.hg-side-head span {
  display: block;
  color: var(--mut);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hg-side-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 4px 12px 10px;
  border-radius: 10px;
  overflow: hidden;
}
.hg-side-tiles span {
  background: var(--panel);
  padding: 14px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #c3cade;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hg-side-foot {
  margin: 14px 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hg-side-foot span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- main ---------- */
.hg-main {
  margin-left: var(--side);
  padding: 14px 18px 40px;
  max-width: 1180px;
}
.hg-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.hg-chips::-webkit-scrollbar {
  display: none;
}
.hg-chips a {
  flex: 0 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: #d5dbea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hg-chips a:hover {
  border-color: var(--red);
  text-decoration: none;
}

/* hero */
.hg-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 12px 0 6px;
  background: #191324;
}
.hg-hero-bg {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 50% center;
}
.hg-hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  padding: 0 clamp(18px, 5vw, 62px);
  background: linear-gradient(90deg, rgba(8, 10, 18, 0.72) 4%, rgba(8, 10, 18, 0.3) 46%, rgba(8, 10, 18, 0) 74%);
}
.hg-hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}
.hg-hero h1 .k {
  font-size: clamp(24px, 3.4vw, 42px);
  color: #fff;
  letter-spacing: -0.01em;
}
.hg-hero h1 .b {
  font-size: clamp(28px, 4.2vw, 52px);
  color: #fff;
  font-weight: 700;
  display: block;
  border-top: 4px solid #f0961e;
  border-bottom: 3px dashed rgba(240, 150, 30, 0.85);
  padding: 8px 0;
  max-width: max-content;
}
.hg-hero h1 .b i {
  font-style: normal;
  color: #f0961e;
  font-weight: 900;
}
.hg-hero h1 .b u {
  text-decoration: none;
  font-size: 0.72em;
  letter-spacing: 0.02em;
}
.hg-join {
  position: absolute;
  left: clamp(18px, 5vw, 62px);
  bottom: 56px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2a1500;
  text-decoration: none;
  background: linear-gradient(180deg, #ffb84d, #ef8f12);
  box-shadow: 0 10px 26px rgba(239, 143, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hg-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(239, 143, 18, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hg-join .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2a1500;
  position: relative;
  flex: none;
}
.hg-join .ic::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb84d;
}
.hg-join .ic::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 4px;
  width: 14px;
  height: 7px;
  border-radius: 7px 7px 0 0;
  background: #ffb84d;
}
.hg-hero-frame {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: clamp(200px, 24vw, 330px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: none;
  z-index: 3;
  pointer-events: none;
}
.hg-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
}
.hg-hero-arrow {
  position: absolute;
  bottom: 14px;
  left: 44%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 16px solid #f0961e;
  z-index: 4;
}


/* rails */
.hg-rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 26px 0 12px;
}
.hg-rail-head h2,
.hg-rail-head h3 {
  margin: 0;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hg-rail-head span {
  color: var(--red2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hg-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 170px);
  align-items: start;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.hg-card {
  position: relative;
}
.hg-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease;
}
.hg-card:hover img {
  transform: translateY(-4px);
  border-color: var(--red);
}
.hg-card b {
  position: absolute;
  left: 8px;
  top: 8px;
  background: var(--gold);
  color: #241a05;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 5px;
  text-transform: uppercase;
}
.hg-card p {
  margin: 8px 2px 0;
  font-size: 12px;
  color: var(--mut);
}
.hg-card p b {
  position: static;
  background: none;
  color: var(--txt);
  display: block;
  font-size: 13px;
  padding: 0;
}
.hg-rank {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hg-rank i {
  font-style: normal;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  opacity: 0.9;
  line-height: 1;
}
.hg-rank .hg-card {
  flex: 1;
  min-width: 0;
}
.hg-sport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 160px);
  align-items: start;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.hg-sport figure {
  margin: 0;
  background: linear-gradient(180deg, #2a1220, #131826);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.hg-sport img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}
.hg-sport figcaption {
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hg-wide {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 18px 0;
}
.hg-wide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---------- article ---------- */
.hg-art > article {
  min-width: 0;
}
.hg-art {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: start;
}
.hg-art h2 {
  margin: 34px 0 10px;
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.22;
  font-weight: 900;
  scroll-margin-top: 76px;
}
.hg-art h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.hg-art p {
  margin: 0 0 14px;
  color: #e8dbd3;
}
.hg-art strong {
  color: #fff;
}
.hg-toc {
  position: sticky;
  top: 78px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.hg-toc b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 8px;
}
.hg-toc a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: #e8dbd3;
}
.hg-toc a:hover {
  color: var(--red2);
}
.hg-list,
.hg-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #e8dbd3;
}
.hg-list li,
.hg-steps li {
  margin-bottom: 7px;
}
.hg-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 18px 0;
}
.hg-box p:last-child {
  margin: 0;
}
.hg-quote {
  margin: 18px 0;
  padding: 14px 18px;
  background: #121826;
  border-left: 3px solid var(--gold);
  border-radius: 10px;
}
.hg-quote p {
  margin: 0 0 6px;
  font-style: italic;
}
.hg-quote cite {
  font-size: 13px;
  color: var(--mut);
  font-style: normal;
}
figure.hg-tbl {
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.hg-tbl table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}
.hg-tbl caption {
  text-align: left;
  padding: 12px 14px;
  font-weight: 800;
  background: var(--panel2);
  color: #fff;
}
.hg-tbl th,
.hg-tbl td {
  padding: 10px 14px;
  text-align: left;
  border-top: 1px solid var(--line);
  color: #e8dbd3;
}
.hg-tbl thead th {
  background: #121826;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hg-tbl tbody th {
  color: #fff;
  font-weight: 700;
}
.hg-shot {
  margin: 18px 0;
}
.hg-shot img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.hg-shot figcaption {
  font-size: 13px;
  color: var(--mut);
  margin-top: 7px;
}
.hg-pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.hg-pc > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.hg-pc h3 {
  margin: 0 0 8px;
  font-size: 15px;
}
.hg-pc ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: #e8dbd3;
}
.hg-pc li {
  margin-bottom: 6px;
}
.hg-pc .pro h3 {
  color: var(--ok);
}
.hg-pc .con h3 {
  color: var(--red2);
}

/* author */
.hg-author {
  display: flex;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 8px;
}
.hg-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.hg-author p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #e8dbd3;
}
.hg-author b {
  color: #fff;
}
.hg-author .rol {
  color: var(--red2);
  font-size: 13px;
  font-weight: 700;
}
.hg-author .dat {
  color: var(--mut);
  font-size: 12px;
  margin-top: 6px;
}

/* reviews: google + reddit */
.hg-rev-tabs {
  display: flex;
  gap: 10px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
}
.hg-rev-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: #e8dbd3;
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.hg-rev-tabs button.on {
  border-color: var(--red);
  color: #fff;
  background: #1d1526;
}
.hg-rev-tabs svg {
  width: 16px;
  height: 16px;
}
.hg-score {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.hg-score .big {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.hg-score p {
  margin: 0;
  font-size: 13px;
  color: var(--mut);
}
.hg-bars {
  flex: 1;
  min-width: 220px;
}
.hg-bars div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mut);
}
.hg-bars i {
  height: 7px;
  border-radius: 4px;
  background: var(--gold);
  display: block;
}
.hg-bars span.tr {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: #222a3c;
  overflow: hidden;
}
.hg-revs {
  display: grid;
  gap: 14px;
}
.hg-rev {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.hg-rev.hide {
  display: none;
}
.hg-rev header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hg-rev .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  flex: 0 0 auto;
  background: #3b4664;
}
.hg-rev .who {
  flex: 1;
  min-width: 0;
}
.hg-rev .who b {
  display: block;
  font-size: 14px;
}
.hg-rev .who span {
  font-size: 12px;
  color: var(--mut);
}
.hg-rev .src {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--mut);
  white-space: nowrap;
}
.hg-rev .src svg {
  width: 14px;
  height: 14px;
}
.hg-rev[data-src="google"] .src {
  color: #cfd6e8;
  background: #172033;
}
.hg-rev[data-src="reddit"] .src {
  color: #ff8a5c;
  background: #2a1a16;
}
.hg-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.hg-stars svg {
  width: 15px;
  height: 15px;
  color: #3a4258;
}
.hg-stars svg.on {
  color: var(--gold);
}
.hg-rev p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #e8dbd3;
}
.hg-rev .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hg-rev .tags span {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #182031;
  color: var(--mut);
}
.hg-rev footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--mut);
}
.hg-rev footer svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
}

/* faq */
.hg-faq {
  margin: 26px 0 0;
}
.hg-faq > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}
.hg-faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
}
.hg-faq svg {
  width: 18px;
  height: 18px;
  color: var(--red2);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.hg-faq .open svg {
  transform: rotate(180deg);
}
.hg-faq p {
  display: none;
  margin: 0;
  padding: 0 16px 14px;
  color: #e8dbd3;
  font-size: 15px;
}
.hg-faq .open p {
  display: block;
}

/* verdict */
.hg-verdict {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(120deg, #241326, #131826);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin: 26px 0 8px;
}
.hg-verdict > span {
  flex: 0 0 auto;
  width: 92px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--gold);
  border: 1px solid #4a3a1c;
  border-radius: 12px;
  padding: 12px 4px;
  background: #1b1608;
}
.hg-verdict h2 {
  margin: 0 0 8px !important;
}
.hg-kicker {
  color: var(--mut);
  font-size: 13px;
  margin-top: 18px;
}
.hg-calc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 18px 0;
}
.hg-calc label {
  display: block;
  font-size: 13px;
  color: var(--mut);
  margin-bottom: 12px;
}
.hg-calc select,
.hg-calc input {
  display: block;
  width: 100%;
  margin-top: 5px;
  background: #0f1422;
  border: 1px solid var(--line);
  color: var(--txt);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}
.hg-calc output {
  display: block;
  font-weight: 800;
  color: var(--gold);
}

/* footer */
.hg-foot {
  margin-left: var(--side);
  border-top: 1px solid var(--line);
  background: #170f0c;
  padding: 26px 18px 34px;
  color: var(--mut);
  font-size: 13px;
}
.hg-foot img {
  height: 32px;
  margin-bottom: 10px;
}
.hg-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0;
}
.hg-foot p {
  max-width: 88ch;
}

/* ---------- mobile ---------- */
@media (max-width: 900px) {
  .hg-art {
    grid-template-columns: minmax(0, 1fr);
  }
  .hg-toc {
    position: static;
    order: -1;
  }
}
@media (max-width: 780px) {
  :root {
    --side: 0px;
  }
  .hg-side {
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    width: 250px;
  }
  body.nav .hg-side {
    transform: none;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.6);
  }
  .hg-main,
  .hg-foot {
    margin-left: 0;
  }
  .hg-main {
    padding: 12px 12px 32px;
  }
  .hg-search {
    display: none;
  }
  .hg-top-btns .hg-btn {
    padding: 9px 11px;
    font-size: 11px;
  }
  .hg-hero {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  .hg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 280px;
    object-position: 60% top;
    border-radius: 14px;
  }
  .hg-hero-copy {
    position: relative;
    height: auto;
    min-height: 280px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 22px 14px 18px;
    gap: 14px;
    background: linear-gradient(180deg, rgba(8, 10, 18, 0.65) 0%, rgba(8, 10, 18, 0.35) 70%, rgba(8, 10, 18, 0) 100%);
  }
  .hg-hero h1 {
    align-items: center;
    gap: 8px;
  }
  .hg-hero h1 .k {
    font-size: 26px;
  }
  .hg-hero h1 .b {
    margin: 0 auto;
    font-size: 30px;
  }
  .hg-join {
    position: static;
    width: calc(100% - 20px);
    max-width: 360px;
    margin: 4px auto 0;
    justify-content: center;
    padding: 17px 20px;
    font-size: 16px;
  }
  .hg-hero-frame {
    position: relative;
    right: auto;
    left: auto;
    transform: none;
    margin: 8px auto 0;
    width: 180px;
    border: none;
  }
  .hg-hero-arrow {
    display: none;
  }

  .hg-pc {
    grid-template-columns: 1fr;
  }
  .hg-verdict {
    flex-direction: column;
  }
  .hg-wide img {
    height: 150px;
  }
}

/* ---------- Desktop: no sideways scrollbar ---------- */
@media (min-width: 1000px) {
  .hg-chips {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .hg-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-columns: auto;
    overflow-x: visible;
  }
}

/* ---------- source note + stat grid ---------- */
.hg-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--mut);
}
.hg-note b {
  color: var(--gold);
}
.hg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.hg-stats > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
}
.hg-stats .k {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--mut);
}
.hg-stats .v {
  font-size: 19px;
  font-weight: 800;
  color: var(--red2);
}
.hg-stats .n {
  font-size: 13px;
  color: var(--mut);
}

/* ---------- promo strip with mascot ---------- */
.hg-promo {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
  align-items: end;
  margin: 20px 0;
  padding: 18px 20px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(100deg, #2a1a12 0%, #1b110d 62%, #3a1f0f 100%);
  overflow: hidden;
}
.hg-promo > div {
  padding-bottom: 20px;
}
.hg-promo .t {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
}
.hg-promo .d {
  margin: 0 0 14px;
  max-width: 62ch;
  color: var(--mut);
  font-size: 15px;
}
.hg-promo img {
  width: 100%;
  height: auto;
  align-self: end;
  display: block;
}
@media (max-width: 720px) {
  .hg-promo {
    grid-template-columns: 1fr 110px;
    padding: 14px 14px 0;
    gap: 8px;
  }
  .hg-promo .t {
    font-size: 18px;
  }
}
