
:root {
  --bg: #070808;
  --bg-2: #0b0d0f;
  --panel: #101316;
  --panel-2: #14181d;
  --line: rgba(218, 179, 111, .18);
  --line-bright: rgba(255, 132, 24, .45);
  --text: #f5f1e8;
  --text-soft: #c7c0b2;
  --muted: #878174;
  --olive: #a9ad65;
  --olive-dark: #606840;
  --orange: #ff8a1c;
  --orange-2: #f05b21;
  --red: #c52f24;
  --green: #87d85d;
  --blue: #6aa7ff;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1220px;
  --gradient: linear-gradient(135deg, #ff9b22 0%, #f05b21 58%, #c52f24 100%);
  --font-display: "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 120, 32, .11), transparent 32rem),
    radial-gradient(circle at 84% 42%, rgba(112, 110, 55, .08), transparent 28rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .42;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 7, 8, .89);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient);
  color: #0a0908;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(240, 91, 33, .25);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(10,9,8,.55);
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: .95;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  letter-spacing: .08em;
  font-weight: 800;
  font-size: 1.65rem;
}

.brand-name span { color: var(--orange); }
.brand-sub {
  margin-top: 5px;
  color: var(--text);
  font-size: .82rem;
  letter-spacing: .48em;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  padding: 12px 13px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  background: var(--gradient);
  border-radius: 100px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 13px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.02rem;
  cursor: pointer;
  transition: .18s ease;
}

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

.btn-primary {
  background: var(--gradient);
  color: #fff7ef;
  box-shadow: 0 14px 30px rgba(240, 91, 33, .25);
}

.btn-outline {
  border-color: rgba(218, 179, 111, .32);
  background: rgba(255,255,255,.02);
  color: var(--text);
}

.btn-dark {
  border-color: rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text-soft);
}

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.page-home { padding-bottom: 28px; }

.hero {
  position: relative;
  padding: 28px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-main {
  min-height: 495px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid rgba(218,179,111,.13);
  background:
    linear-gradient(90deg, rgba(7,8,8,.96) 0%, rgba(7,8,8,.72) 48%, rgba(7,8,8,.36) 100%),
    radial-gradient(circle at 62% 28%, rgba(255,151,42,.16), transparent 22rem),
    linear-gradient(135deg, #161a1d 0%, #0b0d0f 54%, #1b130f 100%);
  box-shadow: var(--shadow);
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 48%, rgba(255,255,255,.09), transparent 8rem),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 100%);
  opacity: 1;
}

.hero-main::after,
.image-ph::after,
.vietnam-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.018) 27px 28px),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: auto, 100% 24px;
  opacity: .22;
  pointer-events: none;
}

.hero-silhouette {
  position: absolute;
  right: 12%;
  bottom: -15px;
  width: 210px;
  height: 360px;
  opacity: .85;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.7));
}

.hero-silhouette::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 12px;
  width: 74px;
  height: 54px;
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(#1d211e, #070808);
  box-shadow: inset 0 8px 0 rgba(255,255,255,.04);
}

.hero-silhouette::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 58px;
  width: 126px;
  height: 260px;
  border-radius: 50px 50px 28px 28px;
  background: linear-gradient(90deg, #080909, #1a1714 52%, #050606);
  clip-path: polygon(28% 0, 72% 0, 88% 22%, 78% 100%, 22% 100%, 12% 22%);
}

.hero-bg-detail {
  position: absolute;
  inset: 0;
  opacity: .58;
  background:
    radial-gradient(ellipse at 90% 32%, rgba(255,122,42,.14), transparent 20%),
    radial-gradient(ellipse at 78% 73%, rgba(0,0,0,.55), transparent 21%),
    linear-gradient(174deg, transparent 0 48%, rgba(255, 130, 34,.09) 49% 50%, transparent 51%),
    linear-gradient(15deg, transparent 0 55%, rgba(218,179,111,.055) 56% 57%, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 76px 70px 56px;
  max-width: 680px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--olive);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 0 13px;
}

.kicker.orange { color: var(--orange); }
.kicker::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--gradient);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: .86;
  letter-spacing: .012em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-rule {
  width: 54px;
  height: 4px;
  margin: 22px 0 20px;
  background: var(--gradient);
  border-radius: 99px;
}

.hero-copy {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.live-card {
  min-height: 495px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218,179,111,.28);
  background:
    radial-gradient(circle at 22% 16%, rgba(255,130,34,.13), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
    #0c0e10;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background:
    radial-gradient(circle at 10% 20%, transparent 0 17px, rgba(218,179,111,.12) 18px 19px, transparent 20px),
    radial-gradient(circle at 20% 30%, transparent 0 22px, rgba(218,179,111,.10) 23px 24px, transparent 25px);
  background-size: 78px 78px;
}

.live-inner { position: relative; z-index: 2; }

.live-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(218,179,111,.15);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--olive);
}

.live-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(135,216,93,.78);
}

.platform-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: .85rem;
}
.platform-pill b {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  padding: 2px 5px;
  border-radius: 4px;
}

.live-brand {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 0 20px;
}

.skull-logo {
  width: 82px;
  height: 82px;
  position: relative;
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  box-shadow: 0 0 24px rgba(255,120,24,.22);
}

.skull-logo::before {
  content: "☠";
  font-size: 2.7rem;
  line-height: 1;
  transform: translateY(-1px);
}

.live-brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.05rem;
  line-height: .9;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.live-brand-tag {
  margin-top: 8px;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
}

.server-rows {
  border-top: 1px solid rgba(218,179,111,.13);
}

.server-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(218,179,111,.11);
}

.server-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.server-label .mini-icon { color: var(--olive); }

.server-value {
  color: var(--text);
  font-weight: 800;
  text-align: right;
  letter-spacing: .03em;
}

.server-value.online { color: var(--green); }
.server-score {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-family: var(--font-display);
  font-size: 2.25rem;
}
.server-score small {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--muted);
}
.score-allies { color: var(--blue); text-align: center; }
.score-axis { color: var(--red); text-align: center; }
.score-mid { color: var(--text); }

.live-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(218,179,111,.12);
  border-radius: 10px;
  margin-top: 14px;
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.quick-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(218,179,111,.11);
  font-size: .95rem;
}
.quick-item:last-child { border-right: 0; }

.section { padding: 10px 0; }

.server-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.promo-card,
.discord-band,
.playlist-card,
.info-card,
.vietnam-banner,
.quote-band {
  border: 1px solid rgba(218,179,111,.20);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)), var(--panel);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
}

.promo-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
}

.image-ph {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(255,142,49,.14), transparent 14rem),
    linear-gradient(135deg, rgba(255,255,255,.02), transparent 30%),
    #111417;
  opacity: .78;
}

.image-ph.vietnam {
  background:
    radial-gradient(circle at 78% 32%, rgba(255,142,49,.18), transparent 15rem),
    radial-gradient(circle at 20% 70%, rgba(100,119,57,.22), transparent 16rem),
    linear-gradient(135deg, #162017, #111417 64%);
}

.promo-card > *:not(.image-ph) { position: relative; z-index: 2; }

.game-logo {
  width: 116px;
  min-height: 116px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(218,179,111,.18);
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--text);
}

.game-logo.vietnam {
  color: var(--orange);
  font-size: 2.9rem;
}

.promo-title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 2.25rem;
  line-height: .9;
}

.promo-kicker {
  margin: 7px 0 0;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.promo-copy {
  color: var(--text-soft);
  margin: 10px 0 16px;
  max-width: 470px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 11px;
  color: var(--text-soft);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 7px;
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.discord-band {
  margin-top: 14px;
  min-height: 82px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 18px;
  align-items: center;
}

.discord-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 0 24px rgba(240,91,33,.22);
}

.band-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
}

.band-copy {
  color: var(--text-soft);
  margin: 6px 0 0;
}

.section-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 10px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section-label-row a { color: var(--orange); }

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.playlist-card {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(110deg, rgba(0,0,0,.72), rgba(0,0,0,.28)),
    linear-gradient(135deg, #1b2025, #0f1012);
}

.playlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .62;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(255,123,28,.16) 65% 66%, transparent 67%),
    radial-gradient(circle at 68% 30%, rgba(255,255,255,.08), transparent 8rem);
}

.playlist-card > * { position: relative; z-index: 2; }

.play-title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: .04em;
  line-height: .9;
}

.play-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.play-meta b { color: var(--orange); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-card {
  padding: 22px;
  min-height: 188px;
}

.info-title {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}
.clean-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 7px 0;
}
.clean-list li::before {
  content: "⊙";
  color: var(--orange);
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}
.stat-box {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.stat-box span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-box strong {
  display: block;
  margin-top: 2px;
  font-size: 1.6rem;
  line-height: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--olive);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vietnam-banner {
  margin-top: 12px;
  min-height: 132px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(10,12,12,.92), rgba(10,12,12,.66), rgba(87,52,20,.46)),
    linear-gradient(135deg, #151a13, #452b13);
}

.vietnam-badge {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,138,28,.38);
  border-radius: 16px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: rgba(0,0,0,.28);
}

.vietnam-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.vietnam-copy {
  color: var(--text-soft);
  margin: 8px 0 0;
}

.quote-band {
  margin-top: 18px;
  padding: 26px 20px;
  text-align: center;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,138,28,.08), transparent),
    #0a0b0c;
}

.quote-band blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  color: var(--text);
  font-style: italic;
  font-family: Georgia, serif;
}
.quote-band blockquote::before,
.quote-band blockquote::after { color: var(--orange); }
.quote-band cite {
  display: block;
  margin-top: 8px;
  color: var(--olive);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  color: var(--olive);
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  margin-top: 8px;
}

.page-hero-simple {
  padding: 56px 0 22px;
}

.page-title-card {
  border: 1px solid rgba(218,179,111,.20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,138,28,.12), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 42px;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.page-copy {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 12px 0;
}

.large-panel {
  border: 1px solid rgba(218,179,111,.20);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)), var(--panel);
  padding: 26px;
}

.large-panel h2,
.large-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 2rem;
  line-height: 1;
}
.large-panel p { color: var(--text-soft); }

@media (max-width: 1050px) {
  .hero-grid,
  .server-cards,
  .info-grid,
  .content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .live-card { min-height: auto; }

  .hero-content { padding: 54px 34px; }

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

  .vietnam-banner,
  .discord-band {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .social-links { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
    min-height: 72px;
  }

  .menu-toggle { display: inline-flex; }

  .nav-links {
    width: 100%;
    display: none;
    justify-content: flex-start;
  }

  .nav.open .nav-links { display: flex; }

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

  .hero-title { font-size: clamp(3.3rem, 17vw, 5rem); }

  .live-brand { grid-template-columns: 1fr; text-align: center; }
  .skull-logo { margin: 0 auto; }

  .quick-strip,
  .playlist-grid,
  .stat-stack {
    grid-template-columns: 1fr;
  }

  .quick-item { border-right: 0; border-bottom: 1px solid rgba(218,179,111,.11); }
  .quick-item:last-child { border-bottom: 0; }

  .server-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .server-value { text-align: left; }

  .promo-card {
    grid-template-columns: 1fr;
  }
  .game-logo {
    border-right: 0;
    border-bottom: 1px solid rgba(218,179,111,.18);
    width: 100%;
    min-height: 84px;
  }
}

@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .brand-name { font-size: 1.25rem; }
  .brand-sub { letter-spacing: .28em; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .live-card, .page-title-card, .large-panel { padding: 22px; }
}
/* =========================================================
   Homepage featured HLL / HLLV cards
   ========================================================= */

.featured-game-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.game-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #0f1215;
}

.game-card-bg,
.game-card-overlay {
  position: absolute;
  inset: 0;
}

.game-card-bg {
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hll-card .game-card-bg {
  background-image: url("images/hellletloose.png");
}

.hllv-card .game-card-bg {
  background-image: url("images/hellletloosevietnam.png");
}

.game-card-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,9,.95) 0%, rgba(7,8,9,.78) 38%, rgba(7,8,9,.42) 72%, rgba(7,8,9,.18) 100%),
    linear-gradient(180deg, rgba(255,138,28,.10) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.60) 100%);
}

.hllv-card .game-card-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,9,.95) 0%, rgba(7,8,9,.75) 38%, rgba(7,8,9,.38) 72%, rgba(7,8,9,.18) 100%),
    linear-gradient(180deg, rgba(121,140,63,.15) 0%, rgba(255,121,0,.10) 35%, rgba(0,0,0,.62) 100%);
}

.game-card-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.game-logo-image {
  width: min(300px, 78%);
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.38));
}

.game-logo-image-vietnam {
  width: min(340px, 82%);
}

.game-card .promo-kicker {
  margin-top: 0;
  margin-bottom: 10px;
}

.game-card .promo-copy {
  max-width: none;
  margin-bottom: 16px;
}

.game-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.game-card .tag-row {
  margin-top: 0;
}

.game-card .tag {
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(2px);
}

@media (max-width: 1180px) {
  .featured-game-cards {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .game-card {
    min-height: 300px;
    padding: 22px;
  }

  .game-card-overlay,
  .hllv-card .game-card-overlay {
    background:
      linear-gradient(180deg, rgba(7,8,9,.18) 0%, rgba(7,8,9,.55) 40%, rgba(7,8,9,.92) 100%);
  }

  .game-card-content {
    max-width: none;
  }

  .game-logo-image,
  .game-logo-image-vietnam {
    width: min(260px, 100%);
  }

  .game-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   SoulSniper logo + wider/responsive polish
   ========================================================= */

:root {
  --container: 1520px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 64px));
}

.site-logo-img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(240, 91, 33, .22));
}

/* Wider large-screen layout */
@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.38fr) minmax(390px, .82fr);
    gap: 28px;
  }

  .hero-main,
  .live-card {
    min-height: 560px;
  }

  .hero-content {
    padding-left: 82px;
    padding-right: 82px;
  }

  .server-cards,
  .info-grid,
  .playlist-grid {
    gap: 18px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1700px) {
  :root {
    --container: 1640px;
  }

  .hero-title {
    font-size: clamp(5.2rem, 6.1vw, 7.6rem);
  }

  .hero-copy {
    font-size: 1.12rem;
    max-width: 650px;
  }

  .promo-card {
    min-height: 190px;
  }

  .playlist-card {
    min-height: 142px;
  }
}

/* Prevent layout blowouts */
.hero-main,
.live-card,
.promo-card,
.discord-band,
.playlist-card,
.info-card,
.vietnam-banner,
.page-title-card,
.large-panel {
  min-width: 0;
}

/* Better desktop polish */
.info-card,
.playlist-card,
.promo-card,
.live-card {
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.info-card:hover,
.playlist-card:hover,
.promo-card:hover {
  border-color: rgba(255, 138, 28, .38);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
}

/* Tablet layout */
@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 42px));
  }

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

  .hero-main,
  .live-card {
    min-height: auto;
  }

  .live-card {
    max-width: none;
  }

  .server-cards,
  .info-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .playlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .discord-band {
    grid-template-columns: 68px 1fr auto;
  }
}

/* Smaller tablets / large phones */
@media (max-width: 900px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-content {
    padding: 44px 28px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
  }

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

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(3),
  .quick-item:nth-child(4) {
    border-top: 1px solid rgba(218, 179, 111, .11);
  }

  .playlist-grid {
    grid-template-columns: 1fr;
  }

  .playlist-card {
    min-height: 138px;
  }

  .discord-band,
  .vietnam-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .vietnam-badge {
    width: 84px;
    height: 84px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links,
  .social-links {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .nav {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-sub {
    letter-spacing: .28em;
  }

  .site-logo-img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .nav-links {
    order: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 10px;
  }

  .nav-links a {
    padding: 12px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
  }

  .nav-links a.active::after,
  .nav-links a:hover::after {
    left: 10px;
    right: auto;
    width: 42px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-main {
    border-radius: var(--radius);
  }

  .hero-content {
    padding: 36px 22px;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: .9;
  }

  .hero-copy,
  .page-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .live-card {
    padding: 22px;
  }

  .live-brand {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .skull-logo {
    margin: 0 auto;
  }

  .server-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }

  .server-value {
    text-align: left;
  }

  .server-score {
    justify-content: flex-start;
  }

  .promo-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .game-logo {
    width: 100%;
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid rgba(218, 179, 111, .18);
  }

  .band-title {
    font-size: 1.55rem;
  }

  .play-title {
    font-size: 1.8rem;
  }

  .info-card,
  .large-panel,
  .page-title-card {
    padding: 22px;
  }

  .page-title {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
}

/* Small phones */
@media (max-width: 460px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .site-logo-img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: .7rem;
    letter-spacing: .2em;
  }

  .hero-title {
    font-size: clamp(2.65rem, 15vw, 3.7rem);
  }

  .kicker {
    font-size: .95rem;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid rgba(218, 179, 111, .11);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .live-brand-title {
    font-size: 1.6rem;
  }

  .server-score {
    font-size: 1.9rem;
  }

  .promo-title,
  .vietnam-title {
    font-size: 2rem;
  }

  .quote-band blockquote {
    font-size: 1.35rem;
  }
}

/* =========================================================
   Homepage server card background images
   ========================================================= */

.server-cards .promo-card {
  min-height: 260px;
  align-items: end;
}

.server-cards .promo-card .image-ph {
  opacity: .92;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96) 0%, rgba(7, 8, 9, .72) 42%, rgba(7, 8, 9, .30) 100%),
    linear-gradient(180deg, rgba(255, 138, 28, .08), rgba(0, 0, 0, .68)),
    url("images/hellletloose.png") center center / cover no-repeat;
}

.server-cards .promo-card .image-ph.vietnam {
  opacity: .92;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96) 0%, rgba(7, 8, 9, .70) 42%, rgba(7, 8, 9, .28) 100%),
    linear-gradient(180deg, rgba(108, 125, 59, .18), rgba(255, 112, 24, .10), rgba(0, 0, 0, .70)),
    url("images/hellletloosevietnam.png") center center / cover no-repeat;
}

.server-cards .promo-card:hover .image-ph {
  transform: scale(1.035);
}

.server-cards .image-ph {
  transition: transform .35s ease;
}

@media (max-width: 760px) {
  .server-cards .promo-card {
    min-height: 320px;
  }

  .server-cards .promo-card .image-ph,
  .server-cards .promo-card .image-ph.vietnam {
    background-position: center center;
  }
}

/* =========================================================
   Final homepage server card image backgrounds
   Uses /images folder backgrounds directly on the cards
   ========================================================= */

.server-cards > .promo-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  align-items: end;
  background: #0f1215;
}

/* Hide old placeholder image layer if present */
.server-cards > .promo-card .image-ph {
  display: none;
}

/* Background image layer */
.server-cards > .promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform .35s ease;
}

/* Dark readability overlay */
.server-cards > .promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96) 0%, rgba(7, 8, 9, .76) 42%, rgba(7, 8, 9, .34) 100%),
    linear-gradient(180deg, rgba(255, 138, 28, .08) 0%, rgba(0, 0, 0, .68) 100%);
}

.server-cards > .promo-card:nth-child(1)::before {
  background-image: url("/images/hellletloose.png");
}

.server-cards > .promo-card:nth-child(2)::before {
  background-image: url("/images/hellletloosevietnam.png");
}

.server-cards > .promo-card:nth-child(2)::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, .96) 0%, rgba(7, 8, 9, .72) 42%, rgba(7, 8, 9, .28) 100%),
    linear-gradient(180deg, rgba(108, 125, 59, .18) 0%, rgba(255, 112, 24, .10) 42%, rgba(0, 0, 0, .72) 100%);
}

.server-cards > .promo-card:hover::before {
  transform: scale(1.055);
}

.server-cards > .promo-card > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .server-cards > .promo-card {
    min-height: 360px;
  }

  .server-cards > .promo-card::after,
  .server-cards > .promo-card:nth-child(2)::after {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, .18) 0%, rgba(7, 8, 9, .58) 38%, rgba(7, 8, 9, .94) 100%);
  }
}

/* Discord icon image */
.discord-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* Clean Discord callout icon */
.discord-band .discord-icon {
  width: 62px;
  height: 62px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.discord-band .discord-icon img {
  width: 50px;
  height: 50px;
}

/* SOF server logo inside live server card */
.server-logo-wrap {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 138, 28, .35);
  box-shadow: 0 0 24px rgba(255, 138, 28, .16);
  overflow: hidden;
}

.server-logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .38));
}

@media (max-width: 760px) {
  .server-logo-wrap {
    margin: 0 auto;
  }
}

/* =========================================================
   Nav cleanup/readability polish
   ========================================================= */

.nav-links a {
  font-size: 1.12rem;
  letter-spacing: .085em;
  padding: 13px 15px;
}

.nav-actions .btn {
  font-size: 1.08rem;
  padding-left: 22px;
  padding-right: 22px;
}

@media (min-width: 1280px) {
  .nav {
    gap: 28px;
  }

  .nav-links {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .nav-links a {
    font-size: 1.05rem;
  }
}

@media (max-width: 760px) {
  .nav-links a {
    font-size: 1.08rem;
    padding: 13px 12px;
  }
}

/* =========================================================
   Creator / YouTube playlist section
   ========================================================= */

.creator-playlists-section {
  padding-top: 18px;
}

.creator-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 30px 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(218, 179, 111, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .14), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
    var(--panel);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.creator-kicker {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.creator-title {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.1vw, 4.1rem);
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.creator-copy {
  margin: 18px 0 10px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.creator-quote {
  margin: 0;
  max-width: 820px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.65;
  font-style: italic;
}

.creator-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.playlist-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.playlist-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: end;
  padding: 24px;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: 18px;
  background: #101316;
  isolation: isolate;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.playlist-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 28, .38);
  box-shadow: 0 20px 44px rgba(0,0,0,.28);
}

.playlist-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform .35s ease;
  opacity: .92;
}

.playlist-feature-card:hover::before {
  transform: scale(1.07);
}

.playlist-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,8,9,.08) 0%, rgba(7,8,9,.42) 38%, rgba(7,8,9,.94) 100%),
    linear-gradient(90deg, rgba(7,8,9,.86) 0%, rgba(7,8,9,.42) 55%, rgba(7,8,9,.18) 100%);
}

.playlist-guides::before {
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 138, 28, .24), transparent 18rem),
    linear-gradient(135deg, #171c21 0%, #111417 42%, #24160f 100%);
}

.playlist-roles::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(169, 173, 101, .24), transparent 18rem),
    linear-gradient(135deg, #161b18 0%, #121416 42%, #1f2416 100%);
}

.playlist-warstories::before {
  background:
    radial-gradient(circle at 80% 22%, rgba(197, 47, 36, .26), transparent 18rem),
    linear-gradient(135deg, #191214 0%, #121416 42%, #261411 100%);
}

.playlist-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 100% 24px, 24px 100%;
}

.playlist-feature-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.playlist-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.playlist-feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.playlist-feature-copy {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 95%;
}

.playlist-feature-card .card-link {
  margin-top: 16px;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1100px) {
  .creator-showcase {
    grid-template-columns: 1fr;
  }

  .creator-actions {
    justify-content: flex-start;
  }

  .playlist-showcase-grid {
    grid-template-columns: 1fr;
  }

  .playlist-feature-card {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .creator-showcase {
    padding: 24px 22px;
  }

  .creator-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .creator-copy,
  .creator-quote {
    font-size: 1rem;
  }

  .playlist-feature-card {
    min-height: 250px;
    padding: 20px;
  }

  .playlist-feature-title {
    font-size: 2rem;
  }
}

/* =========================================================
   Creator split showcase with artwork
   ========================================================= */

.creator-showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(218, 179, 111, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .12), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008)),
    var(--panel);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.creator-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px 12px 12px;
}

.creator-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.creator-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(240, 91, 33, .22));
}

.creator-identity-text {
  min-width: 0;
}

.creator-mini-brand {
  margin: 6px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.creator-showcase-split .creator-kicker {
  margin: 0;
}

.creator-showcase-split .creator-title {
  margin: 0 0 18px;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  line-height: .93;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.creator-showcase-split .creator-copy {
  margin: 0 0 14px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.creator-showcase-split .creator-quote {
  margin: 0;
  max-width: 720px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
  font-style: italic;
}

.creator-showcase-split .creator-actions {
  margin-top: 24px;
  justify-content: flex-start;
}

.creator-art-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(218, 179, 111, .18);
  background: #101316;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.creator-art-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,8,9,.04) 0%, rgba(7,8,9,.14) 30%, rgba(7,8,9,.62) 100%),
    linear-gradient(90deg, rgba(7,8,9,.04) 0%, rgba(7,8,9,.08) 100%);
}

.creator-art-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.creator-art-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 10, 12, .78);
  border: 1px solid rgba(218, 179, 111, .16);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.creator-art-badge-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.creator-art-badge-label {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.creator-art-badge-sub {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: .92rem;
}

/* Better spacing on wider screens */
@media (min-width: 1400px) {
  .creator-showcase-split {
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  }

  .creator-art-panel {
    min-height: 470px;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .creator-showcase-split {
    grid-template-columns: 1fr;
  }

  .creator-copy-panel {
    padding: 6px 4px 0;
  }

  .creator-art-panel {
    min-height: 380px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .creator-showcase-split {
    padding: 18px;
    gap: 18px;
  }

  .creator-identity {
    gap: 12px;
    margin-bottom: 14px;
  }

  .creator-logo {
    width: 56px;
    height: 56px;
  }

  .creator-showcase-split .creator-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .creator-showcase-split .creator-copy,
  .creator-showcase-split .creator-quote {
    font-size: 1rem;
  }

  .creator-art-panel {
    min-height: 300px;
  }

  .creator-art-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
    padding: 12px 13px;
  }

  .creator-art-badge-logo {
    width: 42px;
    height: 42px;
  }

  .creator-art-badge-label {
    font-size: .9rem;
  }

  .creator-art-badge-sub {
    font-size: .84rem;
  }
}

/* =========================================================
   Creator left-panel refinement
   ========================================================= */

.creator-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8px 18px 14px;
}

.creator-copy-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.creator-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.creator-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(240, 91, 33, .22));
}

.creator-kicker {
  margin: 0;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.creator-mini-brand {
  margin: 8px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.creator-showcase-split .creator-title {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.creator-showcase-split .creator-copy {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.creator-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(218, 179, 111, .18);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.creator-quote-card {
  max-width: 740px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(218, 179, 111, .16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
    rgba(0, 0, 0, .18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
}

.creator-showcase-split .creator-quote {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.75;
  font-style: italic;
}

.creator-showcase-split .creator-actions {
  margin-top: 0;
  justify-content: flex-start;
}

@media (max-width: 1100px) {
  .creator-copy-panel {
    padding: 8px 4px 0;
  }
}

@media (max-width: 760px) {
  .creator-copy-panel {
    gap: 18px;
    padding: 0;
  }

  .creator-logo {
    width: 58px;
    height: 58px;
  }

  .creator-showcase-split .creator-title {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .creator-showcase-split .creator-copy,
  .creator-showcase-split .creator-quote {
    font-size: 1rem;
  }

  .creator-quote-card {
    padding: 15px 16px;
  }
}

/* =========================================================
   Footer social icons
   ========================================================= */

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(218, 179, 111, .16);
  background: rgba(255, 255, 255, .025);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 28, .38);
  background: rgba(255, 138, 28, .06);
}

.social-links img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   HLL page redesign
   ========================================================= */

.hll-page-hero {
  padding: 42px 0 18px;
}

.hll-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 138, 28, .16), transparent 24rem),
    linear-gradient(90deg, rgba(7,8,9,.96), rgba(7,8,9,.78)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hll-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
}

.hll-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.hll-hero-logo-wrap {
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 138, 28, .35);
  background:
    radial-gradient(circle at center, rgba(255, 138, 28, .12), transparent 70%),
    rgba(0,0,0,.26);
  box-shadow: 0 18px 44px rgba(0,0,0,.28), 0 0 32px rgba(255, 138, 28, .12);
}

.hll-hero-logo {
  width: 145px;
  height: 145px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.45));
}

.hll-main-sections {
  padding-top: 12px;
}

.hll-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
  gap: 18px;
  align-items: stretch;
}

.hll-stats-panel {
  min-height: 100%;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 138, 28, .12), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
}

.hll-stats-panel h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.hll-live-card {
  min-height: 100%;
}

.server-logo-wrap {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 138, 28, .35);
  box-shadow: 0 0 24px rgba(255, 138, 28, .16);
  overflow: hidden;
}

.server-logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .38));
}

/* Built Different section */
.custom-features-section {
  padding-top: 18px;
  padding-bottom: 36px;
}

.features-header {
  max-width: 900px;
  margin-bottom: 18px;
}

.features-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.features-intro {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.custom-feature-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(218, 179, 111, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .10), transparent 15rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.custom-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 28, .35);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .18);
  font-size: 1.7rem;
}

.custom-feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.custom-feature-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.62;
}

/* Responsive */
@media (max-width: 1250px) {
  .hll-page-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 800px) {
  .hll-hero-content {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hll-hero-logo-wrap {
    width: 140px;
    height: 140px;
  }

  .hll-hero-logo {
    width: 118px;
    height: 118px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .custom-feature-card {
    padding: 22px;
  }

  .server-logo-wrap {
    margin: 0 auto;
  }
}

/* =========================================================
   SOF Stats hype panel
   ========================================================= */

.stats-hype-panel {
  position: relative;
  overflow: hidden;
}

.stats-hype-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 138, 28, .26), transparent 18rem),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 100% 28px, 28px 100%;
}

.stats-hype-panel > * {
  position: relative;
  z-index: 2;
}

.stats-hype-panel h2 {
  max-width: 820px;
  margin-bottom: 14px;
}

.stats-hype-lead {
  max-width: 880px;
  color: var(--text-soft);
  font-size: 1.13rem;
  line-height: 1.72;
  margin-bottom: 24px;
}

.stats-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.stats-feature-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(218, 179, 111, .14);
  background: rgba(255,255,255,.025);
}

.stats-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .16);
  font-size: 1.35rem;
}

.stats-feature-item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 7px;
}

.stats-feature-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: .98rem;
}

.stats-preview-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.stats-preview-box {
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,138,28,.07), rgba(255,255,255,.015)),
    rgba(0,0,0,.18);
  text-align: center;
}

.stats-preview-box span {
  display: block;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stats-preview-box strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1rem;
}

.stats-hype-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .stats-feature-grid,
  .stats-preview-row {
    grid-template-columns: 1fr;
  }

  .stats-feature-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .stats-feature-icon {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   Server rules section
   ========================================================= */

.server-rules-section {
  padding-top: 10px;
  padding-bottom: 48px;
}

.rules-shell {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 138, 28, .14), transparent 24rem),
    radial-gradient(circle at 10% 85%, rgba(169, 173, 101, .08), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: var(--shadow);
}

.rules-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 30px, 30px 100%;
}

.rules-shell > * {
  position: relative;
  z-index: 2;
}

.rules-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}

.rules-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.rules-intro {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.rules-badge {
  width: 150px;
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 138, 28, .32);
  background:
    radial-gradient(circle at center, rgba(255, 138, 28, .10), transparent 70%),
    rgba(0,0,0,.24);
  box-shadow: 0 16px 38px rgba(0,0,0,.28), 0 0 30px rgba(255, 138, 28, .10);
}

.rules-badge img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.45));
}

.rules-badge span {
  color: var(--text);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.rules-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 16px;
  align-items: start;
}

.rules-side-stack {
  display: grid;
  gap: 16px;
}

.rules-card {
  border: 1px solid rgba(218, 179, 111, .16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    rgba(0,0,0,.16);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  padding: 22px;
}

.rules-card-main {
  min-height: 100%;
}

.rules-card-header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(218, 179, 111, .12);
}

.rules-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .18);
  font-size: 1.65rem;
}

.rules-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rules-card-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .96rem;
}

.rules-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: rule-counter;
  display: grid;
  gap: 10px;
}

.rules-list li {
  position: relative;
  min-height: 34px;
  padding: 8px 10px 8px 48px;
  color: var(--text-soft);
  line-height: 1.55;
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(255,255,255,.045);
}

.rules-list li::before {
  counter-increment: rule-counter;
  content: counter(rule-counter);
  position: absolute;
  left: 10px;
  top: 9px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .18);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
}

.rules-list li strong {
  color: var(--text);
}

.rules-list-compact {
  counter-reset: seed-rule-counter;
}

.rules-list-compact li::before {
  counter-increment: seed-rule-counter;
  content: counter(seed-rule-counter);
}

.admin-note-copy {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.rules-discord-btn {
  margin-top: 8px;
  width: 100%;
}

@media (max-width: 1150px) {
  .rules-grid,
  .rules-header {
    grid-template-columns: 1fr;
  }

  .rules-badge {
    width: 100%;
    min-height: auto;
    grid-template-columns: 74px minmax(0, 1fr);
    justify-items: start;
  }

  .rules-badge img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 760px) {
  .rules-shell {
    padding: 22px;
  }

  .rules-card {
    padding: 18px;
  }

  .rules-card-header {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .rules-card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }

  .rules-card h3 {
    font-size: 1.45rem;
  }

  .rules-list li {
    padding-left: 44px;
  }

  .rules-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .rules-intro {
    font-size: 1rem;
  }
}

/* =========================================================
   HLL hero right-side Carentan image
   ========================================================= */

.hll-hero-card-with-image {
  position: relative;
  isolation: isolate;
}

.hll-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7,8,9,.98) 0%, rgba(7,8,9,.88) 38%, rgba(7,8,9,.42) 68%, rgba(7,8,9,.18) 100%),
    linear-gradient(180deg, rgba(255,138,28,.06), rgba(0,0,0,.55)),
    url("images/carentan.png") right center / cover no-repeat;
  opacity: .92;
}

.hll-hero-card-with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 48%, rgba(255,138,28,.12), transparent 22rem),
    linear-gradient(90deg, rgba(7,8,9,.36), transparent 62%);
}

.hll-hero-card-with-image .hll-hero-content {
  position: relative;
  z-index: 2;
}

/* Give the hero content enough room while the image fills the right */
.hll-hero-card-with-image .page-copy {
  max-width: 780px;
}

@media (max-width: 900px) {
  .hll-hero-image {
    background:
      linear-gradient(180deg, rgba(7,8,9,.72) 0%, rgba(7,8,9,.92) 62%, rgba(7,8,9,.98) 100%),
      url("images/carentan.png") center center / cover no-repeat;
    opacity: .55;
  }

  .hll-hero-card-with-image::after {
    background: rgba(7,8,9,.42);
  }
}

/* =========================================================
   HLL Vietnam temporary Coming Soon state
   ========================================================= */

.hllv-page .custom-features-section {
  display: none;
}

/* Keep the real live API card in the page for future use, but hidden for now */
.hllv-page .hllv-live-real {
  display: none;
}

.hllv-coming-soon-card {
  min-height: 100%;
}

.hllv-coming-soon-body {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(218, 179, 111, .13);
}

.hllv-coming-soon-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hllv-coming-soon-body p {
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 620px;
}

.hllv-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
}

.hllv-placeholder-grid div {
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(218, 179, 111, .14);
  background: rgba(255, 255, 255, .025);
}

.hllv-placeholder-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hllv-placeholder-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  line-height: 1.15;
}

@media (max-width: 760px) {
  .hllv-placeholder-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HLL Vietnam - larger SUS logo
   ========================================================= */

.hllv-page .hll-hero-logo-wrap {
  width: 210px;
  height: 210px;
}

.hllv-page .hll-hero-logo {
  width: 175px;
  height: 175px;
}

/* Also make the logo in the Coming Soon card a bit bigger */
.hllv-page .server-logo-wrap {
  width: 108px;
  height: 108px;
}

.hllv-page .server-logo-img {
  width: 96px;
  height: 96px;
}

@media (max-width: 800px) {
  .hllv-page .hll-hero-logo-wrap {
    width: 165px;
    height: 165px;
  }

  .hllv-page .hll-hero-logo {
    width: 138px;
    height: 138px;
  }

  .hllv-page .server-logo-wrap {
    width: 92px;
    height: 92px;
  }

  .hllv-page .server-logo-img {
    width: 80px;
    height: 80px;
  }
}

/* =========================================================
   HLL Vietnam - fix live brand text/logo overlap
   ========================================================= */

.hllv-page .live-brand {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.hllv-page .live-brand > div:last-child {
  min-width: 0;
}

.hllv-page .live-brand-title {
  margin: 0 0 6px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: .95;
}

.hllv-page .live-brand-tag {
  line-height: 1.15;
}

.hllv-page .server-logo-wrap {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .hllv-page .live-brand {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .hllv-page .server-logo-wrap {
    margin: 0 auto;
  }
}

/* =========================================================
   HLL Vietnam - make SUS logo fill badge better
   ========================================================= */

.hllv-page .hll-hero-logo-wrap {
  overflow: hidden;
}

.hllv-page .hll-hero-logo {
  width: 215px;
  height: 215px;
  transform: scale(1.18);
  object-fit: contain;
}

/* Coming Soon card logo */
.hllv-page .server-logo-wrap {
  overflow: hidden;
}

.hllv-page .server-logo-img {
  width: 120px;
  height: 120px;
  transform: scale(1.18);
  object-fit: contain;
}

@media (max-width: 800px) {
  .hllv-page .hll-hero-logo {
    width: 165px;
    height: 165px;
    transform: scale(1.16);
  }

  .hllv-page .server-logo-img {
    width: 98px;
    height: 98px;
    transform: scale(1.16);
  }
}

/* =========================================================
   Leaderboards page stat callouts
   ========================================================= */

.leaderboard-callouts-section {
  padding-top: 10px;
  padding-bottom: 44px;
}

.leaderboard-callouts-grid {
  display: grid;
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 16px;
}

.leaderboard-callout-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(218, 179, 111, .18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  isolation: isolate;
}

.leaderboard-callout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
}

.leaderboard-callout-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 180px;
  z-index: -1;
  opacity: .35;
  background: radial-gradient(circle at center, rgba(255, 138, 28, .24), transparent 70%);
  transition: opacity .22s ease, transform .22s ease;
}

.leaderboard-callout-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 28, .42);
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}

.leaderboard-callout-card:hover::after {
  opacity: .55;
  transform: translateY(-8px);
}

.callout-glow {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .9;
  pointer-events: none;
}

.squads-callout .callout-glow {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 28, .20), transparent 18rem),
    radial-gradient(circle at 8% 92%, rgba(169, 173, 101, .10), transparent 18rem);
}

.player-callout .callout-glow {
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 47, 36, .16), transparent 18rem),
    radial-gradient(circle at 8% 92%, rgba(255, 138, 28, .10), transparent 18rem);
}

.match-callout .callout-glow {
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 150, 255, .13), transparent 18rem),
    radial-gradient(circle at 8% 92%, rgba(255, 138, 28, .10), transparent 18rem);
}

.callout-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .20);
  font-size: 1.9rem;
  box-shadow: 0 0 24px rgba(255, 138, 28, .10);
}

.callout-kicker {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.leaderboard-callout-card h2 {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.75rem);
  line-height: .92;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.leaderboard-callout-card p:not(.callout-kicker) {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.68;
}

.leaderboard-callout-card .card-link {
  margin-top: 22px;
  color: var(--orange);
}

.squads-callout {
  min-height: 400px;
}

.squads-callout .callout-icon {
  width: 72px;
  height: 72px;
  font-size: 2.2rem;
}

.squads-callout h2 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

@media (max-width: 1200px) {
  .leaderboard-callouts-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard-callout-card,
  .squads-callout {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .leaderboard-callout-card {
    padding: 22px;
  }

  .callout-icon,
  .squads-callout .callout-icon {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }

  .leaderboard-callout-card h2,
  .squads-callout h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }
}

/* =========================================================
   VIP page
   ========================================================= */

.vip-page .page-title {
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.vip-hero-section {
  padding: 42px 0 18px;
}

.vip-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 28, .16), transparent 22rem),
    radial-gradient(circle at 10% 90%, rgba(169, 173, 101, .08), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: var(--shadow);
}

.vip-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vip-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.vip-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(218, 179, 111, .16);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vip-price-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 28, .28);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .16), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008)),
    rgba(0, 0, 0, .16);
  box-shadow: 0 18px 44px rgba(0,0,0,.28), 0 0 30px rgba(255, 138, 28, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.vip-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 28, .42);
  box-shadow: 0 24px 58px rgba(0,0,0,.32), 0 0 36px rgba(255, 138, 28, .12);
}

.vip-price-label {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vip-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.vip-price {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: .85;
  letter-spacing: .02em;
  color: var(--text);
}

.vip-price-unit {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.vip-price-copy {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.vip-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vip-card-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.5;
}

.vip-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.vip-fast-setup {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(218, 179, 111, .14);
  background: rgba(255,255,255,.025);
}

.vip-fast-setup strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vip-fast-setup p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.vip-setup-section {
  padding-top: 14px;
}

.vip-section-header {
  max-width: 900px;
  margin-bottom: 18px;
}

.vip-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.vip-section-intro {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.vip-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vip-step-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(218, 179, 111, .18);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .10), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vip-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 28, .36);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.vip-step-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 138, 28, .10);
  border: 1px solid rgba(255, 138, 28, .18);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.vip-step-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.vip-step-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.vip-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.vip-note-card {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(218, 179, 111, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)),
    rgba(0,0,0,.16);
}

.vip-note-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.vip-note-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.vip-perks-section {
  padding-top: 18px;
  padding-bottom: 42px;
}

.vip-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vip-trial-card,
.vip-support-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 28, .10), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.006)),
    var(--panel);
}

.vip-impact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.vip-impact-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.6;
}

.vip-impact-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1150px) {
  .vip-hero-shell,
  .vip-perks-grid,
  .vip-steps-grid,
  .vip-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vip-hero-shell {
    padding: 22px;
  }

  .vip-price-card,
  .vip-step-card,
  .vip-note-card {
    padding: 20px;
  }

  .vip-step-number {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  .vip-section-title {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }
}

/* =========================================================
   HLL Vietnam hero background image
   ========================================================= */

.hllv-page .hll-hero-image {
  background:
    linear-gradient(90deg, rgba(7,8,9,.98) 0%, rgba(7,8,9,.86) 38%, rgba(7,8,9,.44) 68%, rgba(7,8,9,.18) 100%),
    linear-gradient(180deg, rgba(255,138,28,.08), rgba(0,0,0,.56)),
    url("images/helicopter.png") right center / cover no-repeat;
}

@media (max-width: 900px) {
  .hllv-page .hll-hero-image {
    background:
      linear-gradient(180deg, rgba(7,8,9,.72) 0%, rgba(7,8,9,.92) 62%, rgba(7,8,9,.98) 100%),
      url("images/helicopter.png") center center / cover no-repeat;
    opacity: .58;
  }
}

/* =========================================================
   Events page
   Add this to the bottom of styles.css
   ========================================================= */

.events-hero-section { padding: 42px 0 18px; }

.events-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 26px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 138, 28, .18), transparent 24rem),
    radial-gradient(circle at 10% 90%, rgba(169, 173, 101, .08), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: var(--shadow);
}

.events-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 30px, 30px 100%;
}

.events-hero-card > * { position: relative; z-index: 2; }

.events-command-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 28, .28);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 28, .18), transparent 14rem),
    rgba(0,0,0,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}

.events-command-label {
  display: block;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.events-command-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.events-command-card p { margin: 12px 0 0; color: var(--text-soft); }

.events-list-section { padding-top: 14px; }

.events-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.events-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.events-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.event-card {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.event-image {
  position: relative;
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 138, 28, .24), transparent 15rem),
    radial-gradient(circle at 20% 90%, rgba(169, 173, 101, .12), transparent 18rem),
    linear-gradient(135deg, #171b1f, #0f1114 60%, #24150e);
  background-size: cover;
  background-position: center;
}

.event-image::before {
  content: "🍻";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 138, 28, .28);
  font-size: clamp(5rem, 15vw, 11rem);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .20;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
}

.event-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(255, 138, 28, .28);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-content { padding: 30px; }

.event-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .88;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.event-what {
  margin: 16px 0 20px;
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.event-meta-grid div {
  padding: 14px 12px;
  border-radius: 13px;
  border: 1px solid rgba(218, 179, 111, .14);
  background: rgba(255,255,255,.025);
}

.event-meta-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-meta-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  line-height: 1.25;
}

.event-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.event-detail-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  line-height: 1.55;
}

.event-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.event-btn { margin-top: 24px; }

.events-admin-helper-section { padding-top: 18px; padding-bottom: 42px; }

.events-helper-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(218, 179, 111, .16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 138, 28, .10), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.006)),
    var(--panel);
}

.events-helper-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: .95;
  text-transform: uppercase;
}

.events-helper-card p { max-width: 850px; color: var(--text-soft); }

.events-helper-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.events-helper-steps span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(218, 179, 111, .14);
  background: rgba(255,255,255,.025);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .events-hero-card,
  .event-card,
  .events-helper-card { grid-template-columns: 1fr; }

  .event-image { min-height: 240px; }
  .event-meta-grid { grid-template-columns: 1fr; }

  .events-section-header {
    align-items: start;
    flex-direction: column;
  }

  .events-helper-steps { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .events-hero-card,
  .event-content,
  .events-helper-card { padding: 22px; }

  .event-content h3 { font-size: clamp(2.4rem, 13vw, 3.8rem); }
}

/* Remove default beer mug overlay when event image is used */
.event-image::before {
  content: none !important;
}

/* =========================================================
   Homepage full-width hero
   ========================================================= */

.hero-grid-full {
  grid-template-columns: 1fr !important;
}

.hero-grid-full .hero-main {
  min-height: 620px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(7,8,8,.96) 0%, rgba(7,8,8,.76) 42%, rgba(7,8,8,.36) 100%),
    radial-gradient(circle at 62% 28%, rgba(255,151,42,.18), transparent 24rem),
    url("images/homehero.jpg") center center / cover no-repeat;
}

.hero-grid-full .hero-main::before {
  background:
    radial-gradient(circle at 70% 45%, rgba(255,138,28,.16), transparent 16rem),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.62) 100%);
}

.hero-grid-full .hero-content {
  max-width: 780px;
}

@media (min-width: 1280px) {
  .hero-grid-full .hero-content {
    padding: 92px 90px 72px;
  }
}

@media (max-width: 760px) {
  .hero-grid-full .hero-main {
    min-height: 540px;
    background:
      linear-gradient(180deg, rgba(7,8,8,.72) 0%, rgba(7,8,8,.92) 54%, rgba(7,8,8,.98) 100%),
      url("images/homehero.jpg") center center / cover no-repeat;
  }
}

/* =========================================================
   Site-wide cinematic animations
   ========================================================= */

@keyframes soulFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes soulFadeRight {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes soulFadeLeft {
  from {
    opacity: 0;
    transform: translateX(34px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes soulScaleIn {
  from {
    opacity: 0;
    transform: scale(.96) translateY(18px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes soulGlowPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 138, 28, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(255, 138, 28, .12);
  }
}

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  will-change: opacity, transform, filter;
}

/* Activated state */
.animate-on-scroll.is-visible {
  animation: soulFadeUp .72s cubic-bezier(.2, .75, .2, 1) forwards;
}

/* Direction variants */
.animate-from-left.is-visible {
  animation-name: soulFadeRight;
}

.animate-from-right.is-visible {
  animation-name: soulFadeLeft;
}

.animate-scale.is-visible {
  animation-name: soulScaleIn;
}

/* Stagger support */
.animate-delay-1.is-visible { animation-delay: .08s; }
.animate-delay-2.is-visible { animation-delay: .16s; }
.animate-delay-3.is-visible { animation-delay: .24s; }
.animate-delay-4.is-visible { animation-delay: .32s; }
.animate-delay-5.is-visible { animation-delay: .40s; }

/* Hero sections feel more cinematic */
.hero-main.animate-on-scroll.is-visible,
.page-title-card.animate-on-scroll.is-visible,
.hll-hero-card.animate-on-scroll.is-visible,
.vip-hero-shell.animate-on-scroll.is-visible,
.events-hero-card.animate-on-scroll.is-visible {
  animation-duration: .86s;
}

/* Subtle living glow on major panels once visible */
.hero-main.is-visible,
.hll-hero-card.is-visible,
.vip-price-card.is-visible,
.stats-hype-panel.is-visible,
.events-command-card.is-visible {
  animation-name: soulScaleIn, soulGlowPulse;
  animation-duration: .86s, 3.8s;
  animation-delay: 0s, .9s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}

/* Make hover effects feel sharper after animation */
.promo-card,
.playlist-feature-card,
.leaderboard-callout-card,
.custom-feature-card,
.rules-card,
.vip-step-card,
.event-card {
  transform-origin: center;
}

/* Respect people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* =========================================================
   Mobile animation tuning
   ========================================================= */

@media (max-width: 760px) {
  .animate-on-scroll {
    transform: translateY(16px);
    filter: blur(2px);
  }

  .animate-on-scroll.is-visible {
    animation-duration: .48s;
  }

  .animate-delay-1.is-visible,
  .animate-delay-2.is-visible,
  .animate-delay-3.is-visible,
  .animate-delay-4.is-visible,
  .animate-delay-5.is-visible {
    animation-delay: .04s;
  }

  /* On mobile, avoid side-slide animations that can feel janky */
  .animate-from-left.is-visible,
  .animate-from-right.is-visible {
    animation-name: soulFadeUp;
  }

  /* Keep mobile hero animations clean and fast */
  .hero-main.animate-on-scroll.is-visible,
  .page-title-card.animate-on-scroll.is-visible,
  .hll-hero-card.animate-on-scroll.is-visible,
  .vip-hero-shell.animate-on-scroll.is-visible,
  .events-hero-card.animate-on-scroll.is-visible {
    animation-duration: .55s;
  }

  /* Turn off the looping glow on mobile to reduce visual noise/performance cost */
  .hero-main.is-visible,
  .hll-hero-card.is-visible,
  .vip-price-card.is-visible,
  .stats-hype-panel.is-visible,
  .events-command-card.is-visible {
    animation-name: soulScaleIn;
    animation-duration: .55s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }

  /* Keep hover-style movement from causing weird tap behavior */
  .promo-card:hover,
  .playlist-feature-card:hover,
  .leaderboard-callout-card:hover,
  .custom-feature-card:hover,
  .rules-card:hover,
  .vip-step-card:hover,
  .event-card:hover {
    transform: none;
  }
}

@media (max-width: 460px) {
  .animate-on-scroll {
    transform: translateY(12px);
    filter: none;
  }

  .animate-on-scroll.is-visible {
    animation-duration: .38s;
  }
}

/* TEMP obvious animation test */
.hero-main.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px) scale(.96);
}

.hero-main.animate-on-scroll.is-visible {
  animation: testHeroPop 1.2s ease forwards !important;
}

@keyframes testHeroPop {
  from {
    opacity: 0;
    transform: translateY(60px) scale(.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* =========================================================
   Reliable page-load animations
   ========================================================= */

@keyframes pageHeroEntrance {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Animate hero sections immediately on page load */
.hero-main,
.page-title-card,
.hll-hero-card,
.vip-hero-shell,
.events-hero-card {
  opacity: 0;
  animation: pageHeroEntrance .8s cubic-bezier(.2, .75, .2, 1) .12s forwards;
}

/* Animate major cards immediately after */
.promo-card,
.creator-showcase-split,
.playlist-feature-card,
.large-panel,
.live-card,
.leaderboard-callout-card,
.custom-feature-card,
.rules-shell,
.vip-step-card,
.vip-note-card,
.event-card,
.events-helper-card {
  opacity: 0;
  animation: cardEntrance .65s cubic-bezier(.2, .75, .2, 1) .28s forwards;
}

/* Stagger common grids */
.playlist-feature-card:nth-child(2),
.custom-feature-card:nth-child(2),
.leaderboard-callout-card:nth-child(2),
.vip-step-card:nth-child(2) {
  animation-delay: .38s;
}

.playlist-feature-card:nth-child(3),
.custom-feature-card:nth-child(3),
.leaderboard-callout-card:nth-child(3),
.vip-step-card:nth-child(3) {
  animation-delay: .48s;
}

.custom-feature-card:nth-child(4) {
  animation-delay: .58s;
}

/* Keep mobile lighter */
@media (max-width: 760px) {
  .hero-main,
  .page-title-card,
  .hll-hero-card,
  .vip-hero-shell,
  .events-hero-card {
    animation-duration: .48s;
    animation-delay: .05s;
  }

  .promo-card,
  .creator-showcase-split,
  .playlist-feature-card,
  .large-panel,
  .live-card,
  .leaderboard-callout-card,
  .custom-feature-card,
  .rules-shell,
  .vip-step-card,
  .vip-note-card,
  .event-card,
  .events-helper-card {
    animation-duration: .42s;
    animation-delay: .12s;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-main,
  .page-title-card,
  .hll-hero-card,
  .vip-hero-shell,
  .events-hero-card,
  .promo-card,
  .creator-showcase-split,
  .playlist-feature-card,
  .large-panel,
  .live-card,
  .leaderboard-callout-card,
  .custom-feature-card,
  .rules-shell,
  .vip-step-card,
  .vip-note-card,
  .event-card,
  .events-helper-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* =========================================================
   FINAL mobile hamburger + visible scroll reveal
   ========================================================= */

.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(218, 179, 111, .22);
  background: rgba(255, 255, 255, .035);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none !important;
    justify-content: flex-start;
  }

  .nav.open .nav-links {
    display: flex !important;
  }
}

/* Kill previous animation classes so they don't conflict */
.animate-on-scroll,
.animate-on-scroll.is-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

/* New obvious reveal animation */
@keyframes soulRevealUpFinal {
  from {
    opacity: 0;
    transform: translateY(56px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.soul-reveal-final {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(8px);
}

.soul-reveal-final.is-visible {
  animation: soulRevealUpFinal .9s cubic-bezier(.2, .75, .2, 1) forwards;
}

@media (max-width: 760px) {
  .soul-reveal-final {
    transform: translateY(26px);
    filter: blur(2px);
  }

  .soul-reveal-final.is-visible {
    animation-duration: .5s;
  }
}
/* ===== Events page styles ===== */





/* =========================================================
   FINAL CLEAN mobile menu + scroll animations
   ========================================================= */

/* Reset old animation experiments so they stop conflicting */
.hero-main,
.page-title-card,
.hll-hero-card,
.vip-hero-shell,
.events-hero-card,
.promo-card,
.creator-showcase-split,
.playlist-feature-card,
.large-panel,
.live-card,
.leaderboard-callout-card,
.custom-feature-card,
.rules-shell,
.rules-card,
.vip-step-card,
.vip-note-card,
.event-card,
.events-helper-card,
.stats-hype-panel {
  opacity: 1 !important;
  animation: none !important;
}

/* Hamburger button */
.menu-toggle {
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(218, 179, 111, .22);
  background: rgba(255, 255, 255, .035);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none !important;
    justify-content: flex-start;
  }

  .nav.open .nav-links {
    display: flex !important;
  }
}

/* Scroll reveal animation */
@keyframes soulRevealUpFinal {
  from {
    opacity: 0;
    transform: translateY(54px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.soul-reveal-final {
  opacity: 0 !important;
  transform: translateY(54px);
  filter: blur(7px);
}

.soul-reveal-final.is-visible {
  animation: soulRevealUpFinal .9s cubic-bezier(.2, .75, .2, 1) forwards !important;
}

@media (max-width: 760px) {
  .soul-reveal-final {
    transform: translateY(24px);
    filter: blur(2px);
  }

  .soul-reveal-final.is-visible {
    animation-duration: .5s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soul-reveal-final,
  .soul-reveal-final.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* =========================================================
   EMERGENCY FIX - restore hidden content
   ========================================================= */

.soul-reveal-final,
.soul-reveal-final.is-visible,
.animate-on-scroll,
.animate-on-scroll.is-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

/* =========================================================
   HLL mobile stats reposition
   ========================================================= */

.mobile-stats-section {
  display: none;
}

@media (max-width: 760px) {
  .desktop-stats-panel {
    display: none !important;
  }

  .mobile-stats-section {
    display: block;
    padding-top: 12px;
  }

  .mobile-stats-panel {
    margin-top: 0;
  }
}

/* Leaderboards feature cards */
.leaderboards-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.leaderboards-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 510px; /* makes all 3 cards feel equal */
  padding: 28px;
}

.leaderboards-feature-card .feature-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.leaderboards-feature-card .feature-eyebrow {
  min-height: 24px;
  margin-bottom: 18px;
}

.leaderboards-feature-card .feature-title {
  font-size: clamp(3.6rem, 3.2vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  min-height: 3.1em; /* reserves the same amount of space for each title */
  margin: 0 0 22px;
  max-width: 8ch;
}

.leaderboards-feature-card .feature-text {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1; /* pushes button/link to the bottom */
}

.leaderboards-feature-card .feature-link {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .leaderboards-feature-grid {
    grid-template-columns: 1fr;
  }

  .leaderboards-feature-card {
    min-height: auto;
  }

  .leaderboards-feature-card .feature-title {
    min-height: auto;
    max-width: none;
  }
}

/* =========================================================
   Homepage creator section - image on right
   ========================================================= */

.creator-showcase-split {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.creator-copy-panel {
  order: 1;
}

.creator-art-panel {
  order: 2;
  min-height: 520px;
}

.creator-art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile/tablet: stack it cleanly */
@media (max-width: 1050px) {
  .creator-showcase-split {
    grid-template-columns: 1fr !important;
  }

  .creator-copy-panel {
    order: 1;
  }

  .creator-art-panel {
    order: 2;
    min-height: 320px;
  }
}

/* =========================================================
   FINAL FIX - homepage creator split layout
   ========================================================= */

@media (min-width: 901px) {
  .creator-showcase.creator-showcase-split {
    display: grid !important;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr) !important;
    grid-template-rows: auto !important;
    gap: 36px !important;
    align-items: stretch !important;
  }

  .creator-showcase.creator-showcase-split > .creator-copy-panel {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .creator-showcase.creator-showcase-split > .creator-art-panel {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 520px !important;
  }

  .creator-showcase.creator-showcase-split > .creator-art-panel .creator-art-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 900px) {
  .creator-showcase.creator-showcase-split {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .creator-showcase.creator-showcase-split > .creator-copy-panel,
  .creator-showcase.creator-showcase-split > .creator-art-panel {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .creator-showcase.creator-showcase-split > .creator-art-panel {
    min-height: 320px !important;
  }
}

/* =========================================================
   Leaderboards page - equal callout cards
   ========================================================= */

.leaderboard-callouts-grid {
  align-items: stretch;
}

.leaderboard-callout-card,
.leaderboard-callout-card.squads-callout {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 510px;
  padding: 28px;
}

.leaderboard-callout-card .callout-icon,
.leaderboard-callout-card.squads-callout .callout-icon {
  width: 62px;
  height: 62px;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.leaderboard-callout-card h2,
.leaderboard-callout-card.squads-callout h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.75rem) !important;
  line-height: .92;
  min-height: 3em;
  max-width: 520px;
}

.leaderboard-callout-card p:not(.callout-kicker) {
  flex-grow: 1;
}

.leaderboard-callout-card .card-link {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .leaderboard-callout-card,
  .leaderboard-callout-card.squads-callout {
    min-height: auto;
  }

  .leaderboard-callout-card h2,
  .leaderboard-callout-card.squads-callout h2 {
    min-height: auto;
  }
}

/* =========================================================
   Learn page - field manual/resource board
   ========================================================= */

.learn-hero-section {
  padding: 42px 0 18px;
}

.learn-hero-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 138, 28, .16), transparent 24rem),
    radial-gradient(circle at 12% 88%, rgba(169, 173, 101, .08), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: var(--shadow);
}

.learn-resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  align-items: stretch;
}

.learn-feature-panel,
.learn-resource-panel,
.learn-discord-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 179, 111, .20);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.learn-feature-panel {
  min-height: 560px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 138, 28, .18), transparent 20rem),
    linear-gradient(145deg, rgba(35, 22, 13, .70), rgba(16, 19, 22, .98) 58%),
    var(--panel);
}

.learn-resource-panel {
  padding: 28px;
}

.learn-side-stack {
  display: grid;
  gap: 18px;
}

.learn-panel-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.learn-panel-top.compact {
  align-items: flex-start;
}

.learn-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 138, 28, .28);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 138, 28, .18), transparent 4rem),
    rgba(0,0,0,.24);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.learn-panel-top h2,
.learn-discord-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.learn-resource-panel h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.learn-panel-copy {
  max-width: 760px;
  margin: 24px 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.learn-link-stack {
  display: grid;
  gap: 12px;
}

.learn-resource-link,
.learn-mini-grid a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(218, 179, 111, .16);
  background: rgba(255,255,255,.025);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.learn-resource-link:hover,
.learn-mini-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 28, .38);
  background: rgba(255,255,255,.045);
}

.learn-resource-link strong,
.learn-mini-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.learn-resource-link small,
.learn-mini-grid span {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  line-height: 1.5;
}

.learn-resource-link b {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.learn-mini-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.learn-mini-grid a {
  flex-direction: column;
}

.strategy-panel {
  background:
    radial-gradient(circle at 84% 16%, rgba(169, 173, 101, .12), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
}

.learn-resource-link.single {
  margin-top: 20px;
}

.learn-discord-section {
  padding-bottom: 42px;
}

.learn-discord-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 138, 28, .14), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.006)),
    var(--panel);
}

.learn-discord-card p {
  max-width: 860px;
  color: var(--text-soft);
}

@media (max-width: 1050px) {
  .learn-resource-layout,
  .learn-discord-card {
    grid-template-columns: 1fr;
  }

  .learn-feature-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .learn-hero-card,
  .learn-feature-panel,
  .learn-resource-panel,
  .learn-discord-card {
    padding: 22px;
  }

  .learn-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .learn-resource-link {
    flex-direction: column;
  }

  .learn-discord-card .btn {
    width: 100%;
  }
}
/* =========================================================
   Homepage featured servers heading
   ========================================================= */

.featured-servers-section {
  padding-top: 26px;
}

.featured-servers-heading {
  margin: 0 0 18px;
  text-align: center;
}

.featured-servers-heading .kicker {
  justify-content: center;
  margin-bottom: 8px;
}

.featured-servers-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.featured-servers-heading p:not(.kicker) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .featured-servers-section {
    padding-top: 18px;
  }

  .featured-servers-heading {
    text-align: left;
  }

  .featured-servers-heading .kicker {
    justify-content: flex-start;
  }

  .featured-servers-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .featured-servers-heading p:not(.kicker) {
    margin-left: 0;
    margin-right: 0;
  }
}


.btn-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  flex: 0 0 auto;
}

.nav-actions .btn-icon-img {
  width: 17px;
  height: 17px;
}


/* =========================================================
   Learn page - video guide refresh
   ========================================================= */

.learn-video-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.learn-section-heading {
  margin-bottom: 18px;
}

.learn-section-heading h2,
.armor-hub-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.learn-section-heading p:not(.kicker),
.armor-hub-card p {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.learn-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.learn-video-card {
  overflow: hidden;
  border: 1px solid rgba(218, 179, 111, .18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.learn-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 28, .42);
  box-shadow: 0 20px 44px rgba(0,0,0,.30);
}

.learn-video-thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(218, 179, 111, .14);
}

.learn-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,9,.02), rgba(7,8,9,.36)),
    radial-gradient(circle at center, transparent 0 26%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
}

.learn-video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.learn-video-card:hover .learn-video-thumb img {
  transform: scale(1.07);
}

.learn-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 138, 28, .92);
  color: #0a0a0a;
  font-size: 1.15rem;
  box-shadow: 0 14px 28px rgba(0,0,0,.38);
}

.learn-video-info {
  padding: 14px;
}

.learn-video-info strong {
  display: block;
  min-height: 3.25em;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.08;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.learn-video-info span {
  display: block;
  margin-top: 9px;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .88rem;
}

.learn-section-action {
  margin-top: 18px;
}

.armor-hub-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(218, 179, 111, .22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 138, 28, .18), transparent 22rem),
    linear-gradient(135deg, rgba(35, 22, 13, .75), rgba(16, 19, 22, .98) 58%),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.learn-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.learn-tool-card {
  padding: 24px;
  border: 1px solid rgba(218, 179, 111, .18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)),
    var(--panel);
  transition: transform .18s ease, border-color .18s ease;
}

.learn-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 28, .40);
}

.learn-tool-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.learn-tool-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

@media (max-width: 1180px) {
  .learn-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .armor-hub-card,
  .learn-tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .learn-video-grid {
    grid-template-columns: 1fr;
  }

  .armor-hub-card {
    padding: 22px;
  }

  .learn-video-info strong {
    min-height: auto;
  }
}
