/* ============================================================
   SUBPAGE COMPONENTS  (load after styles.css?v=1.0.1)
   ============================================================ */

/* utility — this site has no Bootstrap, so this isn't implicit */
.text-center {
  text-align: center;
}

/* page banner (sits under the fixed nav) */
.page-hero {
  position: relative;
  padding: clamp(140px, 20vh, 215px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 95% at 50% -15%, rgba(47, 224, 191, 0.16), transparent 62%),
    radial-gradient(60% 80% at 50% 125%, rgba(185, 145, 63, 0.14), transparent 60%);
}

/* optional per-page banner background image, set from the admin CMS */
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  z-index: 0;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 9, 10, 0.85) 0%, rgba(6, 9, 10, 0.5) 20%, rgba(6, 9, 10, 0.7) 55%, var(--bg) 100%);
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 1px;
  margin: 16px 0 16px;
}

.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 23px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.breadcrumb a {
  color: var(--gold-2);
}

.breadcrumb a:hover {
  color: var(--gold-1);
}

.breadcrumb .sep {
  opacity: 0.5;
}

/* filter chips */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 52px);
}

.chip {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  background-clip: padding-box;
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.chip:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  transform: translateY(-2px);
}

.chip.active {
  background: var(--grad-gold);
  color: #1c1404;
  border-color: transparent;
  font-weight: 600;
}

.lead-center {
  max-width: 680px;
  margin: -30px auto 50px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
}

/* blog */
.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2));
  box-shadow: var(--shadow);
  margin-bottom: 56px;
}

.featured-post .fp-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.featured-post .fp-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post .fp-body {
  padding: clamp(28px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post .fp-body h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  margin: 14px 0 14px;
}

.featured-post .fp-body p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 26px;
}

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

.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}

.post:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.post .thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.post:hover .thumb img {
  transform: scale(1.07);
}

.tag-pill.cat {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
}

.post .pbody {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.post .meta {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 11px;
}

.post h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
}

.post p {
  color: var(--ink-soft);
  font-size: 14.5px;
  flex: 1;
}

.post .readmore {
  margin-top: 18px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.post:hover .readmore {
  color: var(--gold-1);
}

/* gradient fallbacks for image-ready thumbs */
.pal-1 {
  background: radial-gradient(120% 90% at 40% 25%, #2f6f5f, #0c2420 70%);
}

.pal-2 {
  background: radial-gradient(120% 90% at 60% 25%, #6f2f5a, #241024 70%);
}

.pal-3 {
  background: radial-gradient(120% 90% at 40% 25%, #6f5a2f, #241c10 70%);
}

.pal-4 {
  background: radial-gradient(120% 90% at 60% 25%, #2f5a6f, #10222a 70%);
}

.pal-5 {
  background: radial-gradient(120% 90% at 30% 20%, #6a2f7a, #241028 70%);
}

.pal-6 {
  background: radial-gradient(120% 90% at 70% 30%, #2f7a63, #102420 70%);
}

/* FAQ accordion */
.faq {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--panel), transparent);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 21px 26px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--ink);
}

.faq-q .pm {
  flex: none;
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-q .pm::before,
.faq-q .pm::after {
  content: "";
  position: absolute;
  background: var(--gold-2);
  border-radius: 2px;
}

.faq-q .pm::before {
  top: 9px;
  left: 1px;
  right: 1px;
  height: 2px;
}

.faq-q .pm::after {
  left: 9px;
  top: 1px;
  bottom: 1px;
  width: 2px;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q .pm::after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 360px;
}

.faq-a p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field.row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.field label {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2);
}

.field input,
.field textarea,
.field select {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--ink);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-2);
}

.form-error {
  display: block;
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 6px;
}

/* checkout's own error placeholders always exist in the DOM (so JS can
   find and fill them after a failed validation call), unlike the
   Contact form's @error-only rendering — collapse to nothing while
   empty so every field doesn't carry a permanent empty gap. */
.form-error:empty {
  display: none;
  margin-top: 0;
}

/* required-field marker */
.field label .req {
  color: #ff6b6b;
  margin-left: 3px;
}

/* a field whose own error placeholder is currently showing a message */
.field.has-error input,
.field.has-error select {
  border-color: #ff6b6b;
}

/* detected card-network badge, shown next to the Card Number label */
.card-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-3);
  color: var(--gold-2);
  background: rgba(217, 184, 120, 0.08);
  vertical-align: middle;
}

/* .card-badge's own `display: inline-flex` is an author rule and would
   otherwise win over the browser default `[hidden]{display:none}` —
   same fix already applied to #ggCartFilled/#ggCartClearWrap. */
.card-badge[hidden] {
  display: none;
}

.form-note {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 20px;
}

.form-note-success {
  background: rgba(63, 176, 125, 0.12);
  border: 1px solid rgba(63, 176, 125, 0.35);
  color: #7fe3ae;
}

.form-note-error {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
  color: #ff9a9a;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--panel), transparent);
  transition: 0.3s;
}

.info-item:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.info-item .ii-ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47, 224, 191, 0.14), rgba(185, 145, 63, 0.14));
  border: 1px solid var(--line-soft);
  font-size: 20px;
  color: var(--gold-1);
}

.info-item .ii-ic img {
  width: 22px;
  height: 22px;
}

.info-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* about: split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.split .visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: clamp(320px, 40vw, 460px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(47, 224, 191, 0.3), transparent 55%),
    radial-gradient(80% 70% at 80% 90%, rgba(185, 145, 63, 0.32), transparent 55%),
    linear-gradient(160deg, #0d1e1b, #0a1310);
}

.split .visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  margin: 14px 0 18px;
}

.split p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 16px;
}

/* stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--bg-2));
  box-shadow: var(--shadow);
}

.stat-band .n {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  line-height: 1;
}

.stat-band .l {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
}

.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border: 1px solid var(--line-soft);
}

.compare th,
.compare td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}

.compare th {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--panel);
}

.compare td:first-child,
.compare th:first-child {
  text-align: left;
  color: var(--ink);
}

.compare tr:last-child td {
  border-bottom: 0;
}

.compare .yes {
  color: var(--jade-1);
  font-weight: 700;
}

.compare .no {
  color: var(--ink-dim);
}

.compare .col-feat {
  background: rgba(47, 224, 191, 0.05);
}

/* responsive */
@media (max-width: 980px) {

  .featured-post,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .featured-post .fp-img {
    min-height: 240px;
  }

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

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .split .visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .field.row {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }
}

/* page hero wrapping safety */
.page-hero h1 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* online pill (profile) */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(6, 9, 10, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ============ PROSE (article + legal) ============ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose > * + * {
  margin-top: 20px;
}
.prose p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}
.prose h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-top: 46px;
  line-height: 1.2;
}
.prose h3 {
  font-family: "Cinzel", serif;
  font-size: 21px;
  font-weight: 600;
  margin-top: 34px;
}
.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose a {
  color: var(--gold-1);
  text-decoration: underline;
  text-decoration-color: var(--line);
}
.prose a:hover {
  text-decoration-color: var(--gold-2);
}
.prose blockquote {
  border-left: 3px solid var(--gold-2);
  padding: 6px 0 6px 24px;
  margin: 30px 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 23px;
  color: var(--ink);
}
.prose strong {
  color: var(--ink);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 38px 0;
}

/* ============ ARTICLE ============ */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.article-meta .dotsep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
}
.article-cover {
  position: relative;
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7.5;
}
.article-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 46px auto 0;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--panel), transparent);
}
.author-box .av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  background: var(--grad-jade);
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  color: #04140f;
  font-weight: 700;
  font-size: 22px;
}
.author-box h4 {
  font-family: "Cinzel", serif;
  font-size: 16px;
}
.author-box p {
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============ GODDESS PROFILE ============ */
.profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 52px);
  align-items: start;
}
.profile .pimg {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(47, 224, 191, 0.45), transparent 55%),
    radial-gradient(100% 70% at 50% 100%, rgba(185, 145, 63, 0.5), transparent 60%),
    linear-gradient(180deg, #0e201d, #0a1412 60%, #161109);
}
.profile .pimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile .pimg .online-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}
.profile .pmeta h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}
.profile .pmeta .role {
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  margin: 8px 0 18px;
}
.profile .pbio {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 22px;
}
.pstats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
}
.pstats .n {
  font-family: "Cinzel", serif;
  font-size: 26px;
  font-weight: 700;
}
.pstats .l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.gtag {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* stretched link to make whole game card clickable */
.game .stretch {
  position: absolute;
  inset: 0;
  z-index: 5;
}

@media (max-width: 860px) {
  .profile {
    grid-template-columns: 1fr;
  }
  .profile .pimg {
    max-width: 420px;
    margin: 0 auto;
  }
  .article-cover {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================================
   LIVE PAGE
   ============================================================ */

/* shared LIVE indicator (red, distinct from the jade "online" dot) */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff4d63, #c41e3a);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 0 6px 20px -8px rgba(196, 30, 58, 0.9);
}

.live-pill .ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* viewer count pill */
.viewers {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink);
  background: rgba(6, 9, 10, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 5px 11px;
  backdrop-filter: blur(6px);
}

.viewers img {
  width: 12px;
  height: 12px;
}

/* live status row under the page hero heading */
.live-status {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.live-status .viewers {
  font-size: 12px;
  padding: 7px 14px;
}

/* ---- featured broadcast ---- */
.live-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(20px, 2.6vw, 30px);
  align-items: stretch;
  margin-bottom: clamp(44px, 6vw, 70px);
}

.live-stage {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: clamp(330px, 46vw, 540px);
  background:
    radial-gradient(110% 80% at 50% 12%, rgba(47, 224, 191, 0.32), transparent 56%),
    radial-gradient(100% 80% at 50% 100%, rgba(185, 145, 63, 0.4), transparent 60%),
    linear-gradient(170deg, #0e201d, #0a1412 55%, #161109);
}

.live-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-stage .stage-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 10, 0.35) 0%,
    transparent 30%,
    transparent 52%,
    rgba(6, 9, 10, 0.96) 100%
  );
}

.live-stage .stage-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* central play orb */
.play-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s var(--ease);
}

.play-orb::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(247, 234, 208, 0.4);
  animation: pulse-orb 2.4s var(--ease) infinite;
}

@keyframes pulse-orb {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.play-orb:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-orb img {
  width: 34%;
  height: 34%;
  margin-left: 4px;
}

.live-stage .stage-info {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.stage-info .who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stage-info .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  background: var(--grad-jade);
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  color: #04140f;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.stage-info h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.stage-info .playing {
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  margin-top: 2px;
}

/* ---- side rail: also live ---- */
.live-side {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  overflow: hidden;
}

.live-side .side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.live-side .side-head .live-pill {
  font-size: 10px;
  padding: 4px 10px;
}

.side-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s;
}

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

.side-item:hover {
  background: rgba(47, 224, 191, 0.05);
}

.side-item .thumb {
  position: relative;
  flex: none;
  width: 74px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.side-item .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-item .thumb .mini-live {
  position: absolute;
  top: 5px;
  left: 5px;
  font-family: "Cinzel", serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d63, #c41e3a);
  border-radius: 4px;
  padding: 2px 5px;
}

.side-item .si-body {
  flex: 1;
  min-width: 0;
}

.side-item .si-body h4 {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-item .si-body p {
  color: var(--ink-soft);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-item .si-views {
  flex: none;
  font-family: "Cinzel", serif;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.5px;
}

.live-side .side-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--line-soft);
}

.live-side .side-foot .btn {
  width: 100%;
}

/* ---- live stream grid (extends .gcard) ---- */
.gcard .live-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.gcard .viewers {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.gcard .now-playing {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .live-featured {
    grid-template-columns: 1fr;
  }
}

/* ============ CART PAGE ============ */
.cart-empty {
  text-align: center;
  padding: 40px 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.cart-empty-icon {
  width: 192px;
  height: 192px;
  margin: 0 auto 50px;
  color: var(--gold-3);
  opacity: 0.85;
}

.cart-empty-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ONE unified cart-item card — the bundle is a single order, not three
   separate line-item cards, so game+goddess pair as one media block and
   the three details render as rows inside the SAME card. */
/* .cart-order's own `display: flex` is an author rule and therefore
   wins over the browser default `[hidden]{display:none}` UA rule
   (author beats UA regardless of specificity) — without this, the order
   card stayed visible (unpopulated) for a moment on every page load,
   before JS ever got a chance to set `hidden` correctly. */
#ggCartFilled[hidden] {
  display: none;
}

.cart-order {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  box-shadow: var(--shadow);
  padding: 30px;
}

.cart-order-media {
  flex: none;
}

.cart-order-pair {
  position: relative;
  width: 148px;
  height: 168px;
}

.cart-order-photo {
  position: absolute;
  width: 108px;
  height: 134px;
  border-radius: var(--r-md);
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  border: 3px solid var(--panel-2);
  box-shadow: var(--shadow);
}

.cart-order-photo--game {
  top: 0;
  left: 0;
  z-index: 1;
}

.cart-order-photo--goddess {
  bottom: 0;
  right: 0;
  z-index: 2;
}

.cart-order-info {
  flex: 1;
  min-width: 0;
}

.cart-order-title {
  font-family: "Cinzel", serif;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--ink);
  margin-bottom: 20px;
}

.cart-order-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-order-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.cart-order-row-label {
  flex: none;
  width: 130px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-2);
}

.cart-order-row-value {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-order-row .btn {
  flex: none;
  padding: 8px 16px;
  font-size: 12px;
}

.cart-clear-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* .cart-clear-wrap's own `display: flex` is an author rule and wins
   over the browser default `[hidden]{display:none}` UA rule — same
   fix already applied to #ggCartFilled. */
#ggCartClearWrap[hidden] {
  display: none;
}

@media (max-width: 700px) {
  .cart-order {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px 20px;
  }

  .cart-order-title {
    text-align: center;
  }

  .cart-order-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cart-order-row-label {
    width: 100%;
    text-align: center;
  }

  .cart-order-row-value {
    white-space: normal;
    text-align: center;
  }
}

/* ============ CHECKOUT PAGE ============ */
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.checkout-section-title {
  font-size: clamp(20px, 2.6vw, 24px);
}

.checkout-section-title--spaced {
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

/* order-summary sidebar — sticky so it stays in view alongside the
   (taller) billing/payment form as the page scrolls */
.checkout-summary {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 34px);
}

.checkout-summary .checkout-section-title {
  margin-bottom: 22px;
}

.checkout-summary-media {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.checkout-photo-pair {
  position: relative;
  width: 76px;
  height: 88px;
  flex: none;
}

.checkout-photo {
  position: absolute;
  width: 56px;
  height: 70px;
  border-radius: var(--r-sm);
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  border: 2px solid var(--panel-2);
  box-shadow: var(--shadow);
}

.checkout-photo--game {
  top: 0;
  left: 0;
  z-index: 1;
}

.checkout-photo--goddess {
  bottom: 0;
  right: 0;
  z-index: 2;
}

.checkout-summary-heading {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}

.checkout-summary-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.checkout-summary-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--ink-dim);
}

.checkout-summary-rows li span:last-child {
  color: var(--ink);
  text-align: right;
}

.checkout-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.checkout-summary-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
}

.checkout-summary-totals .row.total {
  font-family: "Cinzel", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-2);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.checkout-summary-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.checkout-place-order {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}