:root {
  --hc-black: #030507;
  --hc-panel: #0b0e12;
  --hc-panel-2: #121820;
  --hc-text: #f7f7f4;
  --hc-muted: #b8c0ca;
  --hc-gold: #ffc400;
  --hc-blue: #12a7df;
  --hc-red: #ef2626;
  --hc-purple: #7b35d6;
  --hc-border: rgba(255, 255, 255, 0.14);
  --hc-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  color: var(--hc-text);
  background:
    radial-gradient(circle at 80% 26%, rgba(18, 167, 223, 0.20), transparent 30rem),
    radial-gradient(circle at 55% 22%, rgba(255, 196, 0, 0.13), transparent 25rem),
    radial-gradient(circle at 98% 58%, rgba(239, 38, 38, 0.12), transparent 24rem),
    linear-gradient(180deg, #020303 0%, #07090d 52%, #030507 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.hc-brand img {
  display: block;
  width: 150px;
  max-height: 74px;
  object-fit: contain;
}

.hc-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-nav__list a {
  color: #f1f3f5;
  transition: color 160ms ease;
}

.hc-nav__list a:hover,
.hc-nav__list .current-menu-item a {
  color: var(--hc-gold);
}

.hc-actions,
.hc-hero__buttons,
.hc-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hc-cart {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 40px;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-cart span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--hc-gold);
  color: #000;
  font-size: 11px;
  font-weight: 900;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--hc-border);
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hc-btn:hover {
  transform: translateY(-1px);
}

.hc-btn--gold {
  border-color: #ffd84a;
  background: linear-gradient(180deg, #ffd84d 0%, #ffb800 100%);
  color: #090909;
}

.hc-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.hc-btn--large {
  min-width: 205px;
  min-height: 56px;
  font-size: 18px;
}

.hc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hc-border);
  border-radius: 6px;
  background: transparent;
}

.hc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hc-site {
  overflow: hidden;
}

.hc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: clamp(600px, 68vh, 760px);
  padding: clamp(26px, 4vw, 56px) clamp(18px, 4vw, 64px) clamp(42px, 5vw, 78px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 48%;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(18, 167, 223, 0.12));
  pointer-events: none;
}

.hc-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  align-self: center;
}

.hc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.08);
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hc-gold);
  box-shadow: 0 0 18px rgba(255, 196, 0, 0.85);
}

.hc-hero h1,
.hc-section h2,
.hc-page-content h1 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.hc-hero h1 {
  max-width: 660px;
  font-size: clamp(54px, 5.5vw, 90px);
  line-height: 0.92;
  text-wrap: balance;
}

.hc-hero h1 > span:first-child,
.hc-section h2 span,
.hc-game-card span {
  color: var(--hc-gold);
}

.hc-hero h1 span {
  display: block;
}

.hc-hero h1 .hc-hero__headline-main {
  color: #fff;
}

.hc-hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #edf1f6;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.5;
}

.hc-hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  z-index: 1;
}

.hc-hero__art::before {
  content: "";
  position: absolute;
  inset: 2% 2% 8% 7%;
  background:
    linear-gradient(120deg, transparent 0 14%, rgba(239, 38, 38, 0.36) 14% 16%, transparent 16% 32%, rgba(255, 196, 0, 0.38) 32% 34%, transparent 34% 52%, rgba(18, 167, 223, 0.38) 52% 54%, transparent 54%),
    radial-gradient(circle at 60% 45%, rgba(255, 196, 0, 0.22), transparent 48%),
    radial-gradient(circle at 80% 60%, rgba(18, 167, 223, 0.18), transparent 48%);
  transform: rotate(-6deg);
  filter: blur(0.2px);
}

.hc-prize-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(720px, 100%);
  min-height: 500px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) 38%, rgba(18, 167, 223, 0.10)),
    radial-gradient(circle at 50% 46%, rgba(255, 196, 0, 0.22), transparent 42%),
    rgba(5, 8, 11, 0.72);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hc-prize-stage::before,
.hc-prize-stage::after {
  content: "";
  position: absolute;
  inset: auto auto 34px 34px;
  width: 150px;
  height: 150px;
  border-left: 2px solid rgba(18, 167, 223, 0.45);
  border-bottom: 2px solid rgba(18, 167, 223, 0.45);
  pointer-events: none;
}

.hc-prize-stage::after {
  inset: 34px 34px auto auto;
  border: 0;
  border-top: 2px solid rgba(255, 196, 0, 0.45);
  border-right: 2px solid rgba(255, 196, 0, 0.45);
}

.hc-prize-stage img {
  position: relative;
  width: min(560px, 92%);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.70));
}

.hc-prize-stage__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 196, 0, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-prize-stage__stats {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hc-prize-stage__stats span {
  display: grid;
  gap: 2px;
  min-height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--hc-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-prize-stage__stats strong {
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.hc-hero-play {
  position: absolute;
  right: clamp(-12px, 1vw, 18px);
  top: 50%;
  z-index: 2;
  display: grid;
  width: min(330px, 88%);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.94);
  box-shadow: var(--hc-shadow);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hc-hero-play p {
  margin: 0;
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-hero-play a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  min-width: 0;
}

.hc-hero-play strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-hero-play span {
  color: var(--hc-muted);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: right;
  text-transform: uppercase;
}

.hc-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  color: var(--hc-muted);
  font-size: 13px;
}

.hc-trust span {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hc-trust i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid var(--hc-gold);
  border-radius: 6px;
  color: var(--hc-gold);
  font-style: normal;
  font-weight: 800;
}

.hc-trust strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.hc-ticker {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 7, 10, 0.82);
  font-family: "Barlow Condensed", sans-serif;
  overflow: hidden;
}

.hc-ticker strong {
  color: var(--hc-gold);
  text-transform: uppercase;
}

.hc-ticker div {
  display: flex;
  gap: 44px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.hc-ticker span {
  animation: hcTicker 28s linear infinite;
}

@keyframes hcTicker {
  to {
    transform: translateX(-35%);
  }
}

.hc-section {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 64px);
}

.hc-section--tight {
  padding-block: 30px;
}

.hc-section__inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.hc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.hc-section-heading p {
  margin: 0;
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-section-heading h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 70px);
  text-align: right;
}

.hc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hc-play-builder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hc-play-builder article {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0b0f14;
  box-shadow: var(--hc-shadow);
}

.hc-play-builder span {
  color: var(--hc-blue);
  font-family: Anton, sans-serif;
  font-size: 34px;
}

.hc-play-builder h3 {
  margin: 16px 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.hc-play-builder p {
  margin: 0 0 22px;
  color: var(--hc-muted);
  line-height: 1.5;
}

.hc-play-builder a {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--hc-gold);
  color: #080808;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-game-product__hero {
  padding: 58px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 82% 12%, rgba(18, 167, 223, 0.18), transparent 30%),
    radial-gradient(circle at 18% 10%, rgba(255, 196, 0, 0.16), transparent 28%),
    #050607;
}

.hc-game-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: end;
}

.hc-game-product h1 {
  max-width: 780px;
  margin: 6px 0 12px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hc-game-product p {
  max-width: 690px;
  margin: 0;
  color: var(--hc-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hc-game-product__panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 8px;
  background: rgba(9, 11, 15, 0.88);
  box-shadow: var(--hc-shadow);
}

.hc-game-product__panel strong {
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.hc-game-product__panel span {
  color: var(--hc-muted);
}

.hc-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--hc-gold);
  color: #080808;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hc-feature-grid article,
.hc-split article,
.hc-page-content {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: var(--hc-shadow);
}

.hc-feature-grid article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  min-height: 116px;
  padding: 20px;
}

.hc-feature-grid span {
  grid-row: span 2;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: var(--hc-blue);
  font-family: Anton, sans-serif;
  font-size: 22px;
}

.hc-feature-grid h2,
.hc-feature-grid p,
.hc-game-card h3,
.hc-game-card p {
  margin: 0;
}

.hc-feature-grid h2,
.hc-game-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-feature-grid p,
.hc-game-card p,
.hc-how p,
.hc-split p {
  color: var(--hc-muted);
  line-height: 1.5;
}

.hc-games__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  gap: 38px;
  align-items: end;
}

.hc-how h2,
.hc-game-zone h2,
.hc-split h2 {
  margin-bottom: 34px;
  font-size: clamp(44px, 5vw, 72px);
}

.hc-how ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.hc-how li strong {
  font-family: Anton, sans-serif;
  font-size: 46px;
}

.hc-how li span {
  display: block;
  color: var(--hc-blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-game-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hc-game-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--hc-gold);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 72%),
    radial-gradient(circle at 50% 25%, rgba(255, 196, 0, 0.32), transparent 34%),
    #101317;
  overflow: hidden;
}

.hc-game-card::before {
  content: "100";
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.10);
  font-family: Anton, sans-serif;
  font-size: 112px;
  line-height: 1;
}

.hc-game-card--pack {
  border-color: var(--hc-purple);
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 72%),
    radial-gradient(circle at 50% 25%, rgba(123, 53, 214, 0.42), transparent 35%),
    #101317;
}

.hc-game-card--hit {
  border-color: var(--hc-red);
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 72%),
    radial-gradient(circle at 50% 25%, rgba(239, 38, 38, 0.40), transparent 35%),
    #101317;
}

.hc-game-card h3 {
  position: relative;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  overflow-wrap: anywhere;
}

.hc-game-card b {
  position: relative;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--hc-gold);
  color: #090909;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.hc-game-card--pack b {
  background: var(--hc-purple);
  color: #fff;
}

.hc-game-card--hit b {
  background: var(--hc-red);
  color: #fff;
}

.hc-game-zone {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-play-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.12), rgba(18, 167, 223, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.hc-play-strip p {
  max-width: 680px;
  margin: 0;
  color: var(--hc-muted);
  font-size: 18px;
  line-height: 1.5;
}

.hc-split .hc-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hc-split article,
.hc-page-content {
  padding: clamp(24px, 4vw, 42px);
}

.hc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: #030405;
  color: var(--hc-muted);
}

.hc-footer img {
  width: 110px;
}

.hc-footer p {
  margin: 0;
}

.hc-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: #eef2f6;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-footer-links a:hover {
  color: var(--hc-gold);
}

.hc-plugin-missing {
  padding: 24px;
  border: 1px solid var(--hc-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1100px) {
  .hc-header {
    grid-template-columns: 150px auto auto;
  }

  .hc-nav-toggle {
    display: block;
    justify-self: end;
  }

  .hc-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: #050607;
  }

  .hc-nav.is-open {
    display: block;
  }

  .hc-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hc-actions .hc-btn {
    display: none;
  }

  .hc-hero,
  .hc-games__layout {
    grid-template-columns: 1fr;
  }

  .hc-hero__copy {
    max-width: 760px;
  }

  .hc-hero__art {
    min-height: 0;
  }

  .hc-prize-stage {
    min-height: 420px;
  }

  .hc-hero-play {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 18px;
    transform: none;
  }

  .hc-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hc-feature-grid,
  .hc-play-builder,
  .hc-game-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hc-header {
    grid-template-columns: 1fr auto auto;
    min-height: 78px;
  }

  .hc-brand img {
    width: 130px;
  }

  .hc-nav {
    top: 78px;
  }

  .hc-hero__buttons,
  .hc-ticker,
  .hc-section-heading,
  .hc-how ol,
  .hc-play-strip,
  .hc-split .hc-section__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hc-section-heading h2 {
    text-align: left;
  }

  .hc-btn--large {
    width: 100%;
  }

  .hc-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hc-hero p {
    font-size: 17px;
  }

  .hc-trust {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hc-trust span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 8px;
    min-height: 58px;
    padding: 10px;
  }

  .hc-trust i {
    grid-row: span 2;
    margin-right: 0;
  }

  .hc-trust strong {
    font-size: 15px;
  }

  .hc-prize-stage {
    min-height: 340px;
    padding: 26px 18px 108px;
  }

  .hc-prize-stage__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hc-prize-stage__stats strong {
    font-size: 22px;
  }

  .hc-prize-stage__badge {
    top: 12px;
    left: 12px;
  }

  .hc-hero-play {
    width: 100%;
  }

  .hc-hero-play a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hc-hero-play span {
    text-align: left;
  }

  .hc-feature-grid,
  .hc-play-builder,
  .hc-game-cards {
    grid-template-columns: 1fr;
  }

  .hc-feature-grid article {
    grid-template-columns: 58px 1fr;
  }

  .hc-feature-grid span {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .hc-footer {
    display: grid;
  }

  .hc-footer-links {
    justify-content: start;
  }
}

.hc-game-card__live {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 6px 0 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.14);
  color: #ffd75e;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.hc-feature-grid article p a {
  color: #ffc400;
  text-decoration: underline;
}

/* Homepage redesign */
body {
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.06) 0, transparent 360px),
    linear-gradient(135deg, #050607 0%, #0c1015 46%, #060708 100%);
}

.hc-header {
  min-height: 78px;
  border-bottom-color: rgba(255, 255, 255, 0.10);
  background: rgba(4, 6, 8, 0.92);
}

.hc-brand img {
  width: 132px;
}

.hc-nav__list {
  font-size: 15px;
}

.hc-cart {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.hc-home-hero {
  grid-template-columns: minmax(390px, 600px) minmax(500px, 660px);
  justify-content: center;
  min-height: min(760px, calc(100vh - 78px));
  column-gap: clamp(42px, 6vw, 118px);
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(42px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(18, 167, 223, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.hc-home-hero::after {
  inset: auto 0 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.65), transparent);
}

.hc-home-hero .hc-hero__copy {
  max-width: 720px;
}

.hc-home-hero .hc-kicker,
.hc-how-panel .hc-kicker {
  border-color: rgba(18, 167, 223, 0.36);
  background: rgba(18, 167, 223, 0.09);
  color: #74dbff;
}

.hc-home-hero .hc-kicker::before,
.hc-how-panel .hc-kicker::before {
  background: #74dbff;
  box-shadow: 0 0 18px rgba(18, 167, 223, 0.85);
}

.hc-home-hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 6.1vw, 100px);
}

.hc-home-hero h1 > span:first-child {
  color: #fff;
}

.hc-home-hero h1 .hc-hero__headline-main {
  color: var(--hc-gold);
}

.hc-home-hero p {
  max-width: 660px;
  color: #dce5ed;
}

.hc-home-hero .hc-hero__art {
  min-height: 500px;
  justify-self: end;
  width: min(660px, 100%);
}

.hc-home-hero .hc-hero__art::before {
  display: none;
}

.hc-slab-showcase {
  position: relative;
  width: min(590px, 100%);
  min-height: 455px;
}

.hc-slab-showcase figure {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0a0d11;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.hc-slab-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-slab-showcase__main {
  inset: 58px auto auto 8px;
  width: min(360px, 62%);
  aspect-ratio: 0.82;
  transform: rotate(-7deg);
}

.hc-slab-showcase__main img {
  object-position: 46% 42%;
  transform: scale(1.06);
}

.hc-slab-showcase__slab {
  inset: 8px 12px auto auto;
  z-index: 2;
  width: min(292px, 50%);
  aspect-ratio: 0.72;
  border-color: rgba(255, 196, 0, 0.45);
  transform: rotate(5deg);
}

.hc-slab-showcase__slab img {
  object-position: 50% 48%;
}

.hc-slab-showcase__hit {
  right: 18%;
  bottom: 18px;
  z-index: 3;
  width: min(250px, 42%);
  aspect-ratio: 1.08;
  border-color: rgba(18, 167, 223, 0.42);
  transform: rotate(-2deg);
}

.hc-slab-showcase__hit img {
  object-position: 50% 50%;
  transform: scale(1.12);
}

.hc-drop-panel {
  position: absolute;
  right: 10px;
  bottom: 22px;
  z-index: 4;
  width: min(300px, 84%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.94);
  box-shadow: var(--hc-shadow);
}

.hc-drop-panel span,
.hc-home-game__eyebrow {
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hc-drop-panel strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.hc-drop-panel p {
  margin: 8px 0 0;
  color: var(--hc-muted);
  line-height: 1.45;
}

.hc-trust--compact span {
  background: rgba(255, 255, 255, 0.045);
}

.hc-pool-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.10);
}

.hc-pool-ribbon span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 12px;
  background: #080b0f;
  color: #edf1f6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hc-live-games,
.hc-proof {
  background: #07090c;
}

.hc-section-heading--left {
  align-items: start;
  flex-direction: column;
  gap: 6px;
}

.hc-section-heading--left h2 {
  text-align: left;
}

.hc-home-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Two-game layout: wider cards, centered, so the pair reads as the whole offer. */
.hc-home-game-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

/* Live fill bar showing how many of the 100 numbers are claimed. */
.hc-home-game__fill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: visible;
}

.hc-home-game__fill span {
  display: block;
  height: 100%;
  min-width: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc400, #ff8a00);
  box-shadow: 0 0 16px rgba(255, 196, 0, 0.35);
  transition: width 240ms ease;
}

.hc-home-game__fill b {
  position: absolute;
  right: 0;
  top: -22px;
  color: #ffd76a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hc-home-game {
  position: relative;
  display: grid;
  min-height: 560px;
  align-content: space-between;
  gap: 16px;
  padding: 0 clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0d1117;
  box-shadow: var(--hc-shadow);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.hc-home-game:hover {
  border-color: rgba(255, 196, 0, 0.55);
  transform: translateY(-3px);
}

.hc-home-game::before {
  content: "100";
  position: absolute;
  top: 198px;
  right: 16px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Anton, Impact, sans-serif;
  font-size: 128px;
  line-height: 1;
}

.hc-home-game__media {
  position: relative;
  z-index: 1;
  height: 188px;
  margin: 0 calc(clamp(22px, 3vw, 30px) * -1) 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #090b0e;
  overflow: hidden;
}

.hc-home-game__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(7, 9, 12, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 50%, rgba(0, 0, 0, 0.20));
  pointer-events: none;
}

.hc-home-game__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-home-game--pack .hc-home-game__media img {
  object-position: 34% 36%;
  transform: scale(1.08);
}

.hc-home-game--vault .hc-home-game__media img {
  object-position: 50% 42%;
  transform: scale(1.03);
}

.hc-home-game--illustration .hc-home-game__media img {
  object-position: 50% 48%;
  transform: scale(1.28);
}

.hc-home-game--pack::after,
.hc-home-game--vault::after,
.hc-home-game--illustration::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -20%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(123, 53, 214, 0.24);
  filter: blur(12px);
}

.hc-home-game--vault::after {
  background: rgba(255, 196, 0, 0.22);
}

.hc-home-game--illustration::after {
  background: rgba(239, 38, 38, 0.22);
}

.hc-home-game h3,
.hc-how-panel h2 {
  position: relative;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.hc-home-game h3 {
  max-width: 310px;
  font-size: clamp(42px, 4vw, 64px);
}

.hc-home-game p {
  position: relative;
  margin: 0;
  color: var(--hc-muted);
  font-size: 17px;
  line-height: 1.5;
}

.hc-home-game dl {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
}

.hc-home-game dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
}

.hc-home-game dt,
.hc-home-game dd {
  margin: 0;
  min-width: 0;
}

.hc-home-game dt {
  color: var(--hc-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-home-game dd {
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hc-home-game b {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  background: var(--hc-gold);
  color: #090909;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  text-align: center;
  text-transform: uppercase;
}

.hc-home-game--pack b {
  background: var(--hc-purple);
  color: #fff;
}

.hc-home-game--illustration b {
  background: var(--hc-red);
  color: #fff;
}

.hc-how-panel {
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.10), transparent 35%),
    #0b0e12;
}

.hc-how-panel__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hc-how-panel h2 {
  max-width: 560px;
  font-size: clamp(48px, 5vw, 78px);
}

.hc-reveal-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hc-reveal-steps li {
  min-width: 0;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hc-reveal-steps strong {
  color: var(--hc-gold);
  font-family: Anton, Impact, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.hc-reveal-steps span {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.hc-reveal-steps p {
  margin: 10px 0 0;
  color: var(--hc-muted);
  line-height: 1.5;
}

.hc-prize-pools,
.hc-winners,
.hc-home-faq {
  background: #050607;
}

.hc-proof .hc-feature-grid article {
  align-content: start;
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0d1117;
}

.hc-proof .hc-feature-grid span {
  color: var(--hc-gold);
  font-size: 18px;
}

.hc-home-faq article {
  background:
    linear-gradient(135deg, rgba(18, 167, 223, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.hc-game-zone {
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.13), rgba(18, 167, 223, 0.08)),
    #080b0f;
}

.hc-game-zone h2 {
  max-width: 900px;
}

@media (max-width: 1100px) {
  .hc-home-hero,
  .hc-how-panel__inner {
    grid-template-columns: 1fr;
  }

  .hc-home-hero .hc-hero__art {
    min-height: 500px;
  }

  .hc-home-game-grid,
  .hc-reveal-steps {
    grid-template-columns: 1fr;
  }

  .hc-home-game {
    min-height: 0;
  }

  .hc-pool-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hc-home-hero {
    padding-top: 28px;
  }

  .hc-home-hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .hc-home-hero .hc-hero__art {
    min-height: 390px;
  }

  .hc-slab-showcase {
    min-height: 330px;
  }

  .hc-slab-showcase__main {
    left: 0;
    width: 62%;
  }

  .hc-slab-showcase__slab {
    width: 52%;
  }

  .hc-slab-showcase__hit {
    right: 10%;
    width: 45%;
  }

  .hc-drop-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hc-pool-ribbon {
    grid-template-columns: 1fr;
  }

  .hc-pool-ribbon span {
    min-height: 48px;
  }

  .hc-home-game dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hc-reveal-steps li {
    min-height: 0;
  }
}

/* ============================================================
   Grail layer - prize-forward homepage (theme 2.0)
   ============================================================ */

.hc-btn--teal {
  border-color: rgba(23, 211, 194, 0.65);
  background: rgba(23, 211, 194, 0.12);
  color: #17d3c2;
}

.hc-btn--teal:hover {
  background: rgba(23, 211, 194, 0.22);
}

.hc-grail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 96px) clamp(18px, 4vw, 64px) clamp(28px, 4vw, 56px);
}

.hc-grail-hero__title {
  margin: 14px 0 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
}

.hc-grail-hero__title span {
  display: block;
  color: var(--hc-text);
}

.hc-grail-hero__title em {
  display: block;
  font-style: normal;
  color: var(--hc-gold);
  text-shadow: 0 0 34px rgba(255, 196, 0, 0.35);
}

/* Long card names: keep the price huge, shrink the name so the hero stays tight. */
.hc-grail-hero__title--long span:last-child {
  font-size: 0.52em;
  line-height: 1.04;
}

.hc-grail-hero__sub {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--hc-muted);
  font-size: 17px;
  line-height: 1.6;
}

.hc-grail-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hc-grail-hero__note {
  margin: 14px 0 0;
  color: var(--hc-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-grail-hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.hc-grail-hero__stage::before {
  content: "";
  position: absolute;
  inset: 6% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.22), rgba(18, 167, 223, 0.10) 55%, transparent 72%);
  filter: blur(6px);
}

.hc-grail-card {
  position: relative;
  display: block;
  width: min(330px, 74%);
  transform: rotate(4deg);
  transition: transform 220ms ease;
}

.hc-grail-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.hc-grail-card img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 46px rgba(255, 196, 0, 0.22);
  background: var(--hc-panel-2);
}

.hc-grail-card__tag {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 0, 0.6);
  background: #0c0a02;
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

/* Just Pulled ticker */
.hc-pulled {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--hc-border);
  border-bottom: 1px solid var(--hc-border);
  background: rgba(0, 0, 0, 0.45);
}

.hc-pulled__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 14px clamp(16px, 3vw, 28px);
  border-right: 1px solid var(--hc-border);
  background: rgba(255, 196, 0, 0.07);
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-pulled__label i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #29d84c;
  box-shadow: 0 0 12px rgba(41, 216, 76, 0.9);
  animation: hcPulse 1.6s ease-in-out infinite;
}

@keyframes hcPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hc-pulled__track {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 10px clamp(16px, 3vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
}

.hc-pulled__track::-webkit-scrollbar {
  display: none;
}

.hc-pulled__item {
  flex: 0 0 auto;
}

.hc-pulled__item strong {
  display: block;
  color: var(--hc-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hc-pulled__item span {
  display: block;
  color: var(--hc-muted);
  font-size: 12px;
  white-space: nowrap;
}

/* Grail game tiles */
.hc-grail-game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  max-width: 1020px;
  margin: 0 auto;
}

.hc-grail-game {
  position: relative;
  display: grid;
  grid-template-rows: 300px auto;
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)), var(--hc-panel);
  box-shadow: var(--hc-shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hc-grail-game:hover {
  border-color: rgba(255, 196, 0, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 196, 0, 0.12);
}

.hc-grail-game--illustration:hover {
  border-color: rgba(23, 211, 194, 0.65);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(23, 211, 194, 0.12);
}

.hc-grail-game__price {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--hc-gold);
  color: #0b0800;
  font-family: Anton, Impact, sans-serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.hc-grail-game--illustration .hc-grail-game__price {
  background: #17d3c2;
  color: #01211e;
}

.hc-grail-game__media {
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 196, 0, 0.14), transparent 55%),
    var(--hc-panel-2);
  display: grid;
  place-items: center;
}

.hc-grail-game--illustration .hc-grail-game__media {
  background:
    radial-gradient(circle at 50% 20%, rgba(23, 211, 194, 0.14), transparent 55%),
    var(--hc-panel-2);
}

.hc-grail-game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.hc-grail-game:hover .hc-grail-game__media img {
  transform: scale(1.05);
}

.hc-grail-game__body {
  display: grid;
  gap: 10px;
  padding: 20px 22px 24px;
}

.hc-grail-game__eyebrow {
  color: var(--hc-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hc-grail-game h3 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.hc-grail-game__chase {
  margin: 0;
  color: var(--hc-muted);
  font-size: 14px;
}

.hc-grail-game__chase strong {
  color: var(--hc-text);
}

.hc-grail-game__meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.hc-grail-game__meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hc-gold), #ff8a00);
}

.hc-grail-game--illustration .hc-grail-game__meter span {
  background: linear-gradient(90deg, #17d3c2, #12a7df);
}

.hc-grail-game__stats {
  margin: 0;
  color: var(--hc-muted);
  font-size: 13px;
}

.hc-grail-game__stats b {
  color: var(--hc-text);
}

.hc-grail-game .hc-btn {
  justify-self: start;
  margin-top: 4px;
}

/* Proof strip */
.hc-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(20px, 3vw, 40px) clamp(18px, 4vw, 64px);
  border: 1px solid var(--hc-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--hc-border);
}

.hc-proof-strip > a,
.hc-proof-strip > span {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(4, 6, 9, 0.92);
  transition: background 160ms ease;
}

.hc-proof-strip > a:hover {
  background: rgba(255, 196, 0, 0.08);
}

.hc-proof-strip b {
  color: var(--hc-gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hc-proof-strip span span,
.hc-proof-strip a span {
  color: var(--hc-muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hc-grail-hero {
    grid-template-columns: 1fr;
  }

  .hc-grail-hero__stage {
    min-height: 320px;
    order: -1;
  }

  .hc-grail-game-grid {
    grid-template-columns: 1fr;
  }

  .hc-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hc-grail-hero {
    padding-top: 26px;
  }

  .hc-grail-hero__stage {
    min-height: 260px;
  }

  .hc-grail-card {
    width: min(240px, 78%);
  }

  .hc-grail-game {
    grid-template-rows: 220px auto;
  }

  .hc-proof-strip {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
  }

  .hc-pulled__label {
    font-size: 16px;
  }
}
