:root {
  --bg: #08070d;
  --bg-soft: #0e0b16;
  --surface: rgba(20, 16, 31, 0.78);
  --surface-strong: #161121;
  --surface-light: #1d172b;
  --line: rgba(214, 190, 130, 0.16);
  --line-strong: rgba(214, 190, 130, 0.35);
  --text: #f5f1e9;
  --text-soft: #b8b0c6;
  --gold: #d8ba76;
  --gold-bright: #f1d698;
  --violet: #8f6ddb;
  --violet-bright: #b798ff;
  --danger: #d26f7f;
  --success: #79bf9a;
  --max-width: 1180px;
  --header-height: 78px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(105, 70, 170, 0.16), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 13, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.brand span:last-child {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.035em;
}

.brand small {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #d8d1df;
  font-size: 0.88rem;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 27px 0;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), #a78950 70%);
  color: #15100a;
  box-shadow: 0 12px 40px rgba(216, 186, 118, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 45px rgba(216, 186, 118, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.025);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(216, 186, 118, 0.65);
  background: rgba(216, 186, 118, 0.06);
}

.button-small {
  min-height: 39px;
  padding-inline: 17px;
  border-radius: 9px;
  font-size: 0.82rem;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 90px) 0 100px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 13, 0.98) 0%, rgba(8, 7, 13, 0.92) 38%, rgba(8, 7, 13, 0.45) 70%, rgba(8, 7, 13, 0.82) 100%),
    radial-gradient(circle at 78% 42%, rgba(111, 70, 183, 0.28), transparent 30%),
    linear-gradient(135deg, #09070f, #151020 55%, #07060b);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(216, 186, 118, 0.15);
  border-radius: 50%;
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.hero-orb-one {
  top: 110px;
  right: -130px;
  width: 610px;
  aspect-ratio: 1;
}

.hero-orb-one::before {
  inset: 48px;
}

.hero-orb-one::after {
  inset: 96px;
}

.hero-orb-two {
  bottom: 40px;
  left: -230px;
  width: 450px;
  aspect-ratio: 1;
  opacity: 0.45;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.support-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6.5vw, 6.4rem);
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold-bright), #fff0c5 36%, var(--violet-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 670px;
  margin: 27px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
  color: #a59dae;
  font-size: 0.78rem;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero-visual {
  position: relative;
}

.eclipse-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(11, 8, 18, 0.88);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,0.04);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.eclipse-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.09), transparent 24%, transparent 70%, rgba(143, 109, 219, 0.08));
}

.eclipse-card-top,
.battle-hud {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
}

.eclipse-card-top {
  border-bottom: 1px solid var(--line);
  color: #d8d1df;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(121,191,154,0.8);
}

.stage-tag {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--gold);
}

.battlefield {
  position: relative;
  height: 425px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(169, 137, 227, 0.19), transparent 22%),
    linear-gradient(transparent 0 54%, rgba(0,0,0,0.5) 54%),
    repeating-linear-gradient(0deg, transparent 0 56px, rgba(216,186,118,0.07) 57px 58px),
    repeating-linear-gradient(90deg, transparent 0 69px, rgba(216,186,118,0.07) 70px 71px),
    linear-gradient(180deg, #1a1327, #0b0911);
}

.battlefield::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background:
    linear-gradient(155deg, transparent 48%, rgba(255,255,255,0.035) 49% 51%, transparent 52%),
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,0.025) 49% 51%, transparent 52%);
  background-size: 120px 80px;
  transform: perspective(480px) rotateX(58deg) scale(1.5);
  transform-origin: bottom;
}

.battle-moon {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 36%, #f0e0b2, #9879c4 62%, #362348 68%, transparent 70%);
  transform: translateX(-50%);
  box-shadow: 0 0 90px rgba(143,109,219,0.42);
}

.unit {
  position: absolute;
  z-index: 3;
  bottom: 82px;
  width: 48px;
  height: 100px;
  filter: drop-shadow(0 16px 10px rgba(0,0,0,0.5));
}

.unit span {
  position: absolute;
  inset: 4px 8px 11px;
  border-radius: 50% 50% 36% 36%;
}

.unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: inherit;
}

.unit::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: 33px;
  width: 34px;
  height: 5px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(-32deg);
  transform-origin: left center;
  box-shadow: 18px 0 0 -1px currentColor;
}

.unit-a {
  color: #e4cb8a;
  background: linear-gradient(#d7bb77, #5f416e);
}

.unit-a span {
  background: linear-gradient(#c3a260, #34233d);
}

.unit-e {
  color: #ba82df;
  background: linear-gradient(#a260ce, #2d1c3a);
  transform: scaleX(-1);
}

.unit-e span {
  background: linear-gradient(#8c4cba, #24172f);
}

.unit-a1 { left: 13%; transform: scale(1.02); }
.unit-a2 { left: 25%; bottom: 128px; transform: scale(0.84); opacity: 0.88; }
.unit-a3 { left: 34%; bottom: 72px; transform: scale(0.92); }
.unit-e1 { right: 13%; transform: scaleX(-1) scale(1.05); }
.unit-e2 { right: 25%; bottom: 130px; transform: scaleX(-1) scale(0.85); opacity: 0.88; }
.unit-e3 { right: 35%; bottom: 70px; transform: scaleX(-1) scale(0.92); }

.battle-flare {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 105px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,194,0.82), rgba(153,111,224,0.35) 28%, transparent 68%);
  transform: translateX(-50%);
  animation: pulse-flare 3.4s ease-in-out infinite;
}

.battle-hud {
  border-top: 1px solid var(--line);
}

.battle-hud > div:first-child {
  display: grid;
  min-width: 150px;
}

.battle-hud small {
  color: var(--text-soft);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.battle-hud strong {
  font-size: 0.83rem;
}

.energy-track {
  flex: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,0.07);
}

.energy-track span {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--gold-bright));
  box-shadow: 0 0 12px rgba(183,152,255,0.4);
}

.battle-hud button {
  border: 1px solid rgba(216,186,118,0.35);
  border-radius: 7px;
  padding: 7px 9px;
  background: rgba(216,186,118,0.08);
  color: var(--gold-bright);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.floating-rune {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(15, 11, 23, 0.8);
  color: var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.rune-one {
  top: -25px;
  right: -21px;
  width: 70px;
  height: 70px;
  animation: float 4.5s ease-in-out infinite;
}

.rune-two {
  bottom: 45px;
  left: -35px;
  width: 56px;
  height: 56px;
  color: var(--violet-bright);
  animation: float 5.2s ease-in-out infinite reverse;
}

.hero-fade {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(transparent, var(--bg));
}

.quick-facts {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 12, 24, 0.94);
  box-shadow: 0 20px 60px rgba(0,0,0,0.32);
  backdrop-filter: blur(16px);
}

.fact-grid > div {
  display: grid;
  gap: 2px;
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

.fact-grid > div:last-child {
  border-right: 0;
}

.fact-grid strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}

.fact-grid span {
  color: var(--text-soft);
  font-size: 0.75rem;
}

.section {
  position: relative;
  padding: 125px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 50%, rgba(120,82,180,0.10), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent),
    var(--bg-soft);
  border-block: 1px solid rgba(255,255,255,0.025);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.support-copy h2,
.final-cta h2 {
  font-size: clamp(2.45rem, 5vw, 4.5rem);
}

.section-heading p:last-child,
.section-copy p,
.support-copy > p,
.final-cta > .container > p:not(.eyebrow) {
  color: var(--text-soft);
}

.section-heading p:last-child {
  max-width: 700px;
  margin: 18px auto 0;
}

.video-section {
  padding-top: 145px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #050408;
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.section-copy p {
  margin: 22px 0 0;
  font-size: 1.03rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--gold-bright);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.lore-panel {
  position: relative;
  min-height: 500px;
}

.sigil {
  position: relative;
  width: 130px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.sigil::before,
.sigil::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.sigil::before {
  inset: 18px;
}

.sigil::after {
  inset: 38px;
  background: radial-gradient(circle, var(--gold) 0 4px, transparent 5px);
}

.sigil-large {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  border-color: rgba(143,109,219,0.25);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 100px rgba(143,109,219,0.09);
}

.sigil-large::before {
  inset: 46px;
}

.sigil-large::after {
  inset: 92px;
  background:
    linear-gradient(45deg, transparent 48%, rgba(216,186,118,0.35) 49% 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(216,186,118,0.35) 49% 51%, transparent 52%);
}

.lore-card {
  position: absolute;
  width: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18,14,28,0.84);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.lore-card span {
  color: var(--violet-bright);
  font-size: 0.68rem;
  font-weight: 800;
}

.lore-card strong,
.lore-card small {
  display: block;
}

.lore-card strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.lore-card small {
  margin-top: 3px;
  color: var(--text-soft);
}

.lore-card-one { top: 38px; left: 10px; }
.lore-card-two { top: 205px; right: 0; }
.lore-card-three { bottom: 12px; left: 50px; }

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

.feature-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.025), transparent 55%),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(216,186,118,0.05), transparent 55%),
    var(--surface);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(216,186,118,0.055);
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-card h3 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.91rem;
}

.gallery-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(143,109,219,0.11), transparent 25%),
    var(--bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #100c18;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-art {
  position: absolute;
  inset: 0;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-card:hover .gallery-art,
.gallery-card:focus-visible .gallery-art {
  transform: scale(1.035);
  filter: saturate(1.18);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(5,4,8,0.93));
}

.gallery-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.gallery-label strong,
.gallery-label small {
  display: block;
}

.gallery-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.gallery-label small {
  color: var(--text-soft);
}

.art-battle {
  background:
    radial-gradient(circle at 65% 25%, rgba(230,205,143,0.52), transparent 5%, rgba(143,109,219,0.28) 11%, transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,0.04) 71px),
    linear-gradient(155deg, #2d1e45, #0d0915 60%);
}

.art-battle i {
  position: absolute;
  bottom: 62px;
  width: 30px;
  height: 72px;
  border-radius: 50% 50% 28% 28%;
  background: linear-gradient(#d6bd80, #4b315e);
  box-shadow: 0 16px 20px rgba(0,0,0,0.5);
}

.art-battle i:nth-child(1) { left: 12%; }
.art-battle i:nth-child(2) { left: 25%; bottom: 94px; transform: scale(.8); }
.art-battle i:nth-child(3) { right: 12%; background: linear-gradient(#ad73d6, #301d40); }
.art-battle i:nth-child(4) { right: 25%; bottom: 94px; transform: scale(.8); background: linear-gradient(#ad73d6, #301d40); }
.art-battle i:nth-child(5) {
  left: 50%;
  bottom: 92px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,244,198,.8), rgba(153,109,224,.25) 32%, transparent 70%);
  transform: translateX(-50%);
  box-shadow: none;
}

.art-formation {
  background: linear-gradient(145deg, #241834, #0c0912);
}

.art-formation::before {
  content: "";
  position: absolute;
  inset: 40px 30px 70px;
  background:
    linear-gradient(rgba(216,186,118,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,186,118,0.11) 1px, transparent 1px);
  background-size: 25% 33.33%;
  border: 1px solid var(--line);
}

.art-formation i {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216,186,118,0.5);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 3px, #412d4d 4px 100%);
}

.art-formation i:nth-child(1) { top: 70px; left: 24%; }
.art-formation i:nth-child(2) { top: 125px; left: 41%; }
.art-formation i:nth-child(3) { top: 175px; left: 24%; }
.art-formation i:nth-child(4) { top: 70px; right: 20%; background: radial-gradient(circle, var(--violet-bright) 0 3px, #341f46 4px 100%); }
.art-formation i:nth-child(5) { top: 175px; right: 20%; background: radial-gradient(circle, var(--violet-bright) 0 3px, #341f46 4px 100%); }

.art-boss {
  background:
    radial-gradient(circle at 50% 42%, rgba(191,128,224,0.32), transparent 28%),
    linear-gradient(180deg, #261436, #0b0810);
}

.art-boss i:first-child {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 120px;
  height: 155px;
  border-radius: 48% 48% 28% 28%;
  background: linear-gradient(#7d4fa1, #23122f);
  transform: translateX(-50%);
  box-shadow: 0 0 60px rgba(143,109,219,0.26);
}

.art-boss i:last-child {
  position: absolute;
  top: 27px;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 45% 45%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(216,186,118,0.25);
}

.art-story {
  background:
    radial-gradient(circle at 70% 22%, rgba(216,186,118,0.15), transparent 16%),
    linear-gradient(145deg, #2b1c33, #0d0913 75%);
}

.art-story i:nth-child(1) {
  position: absolute;
  left: 36px;
  bottom: 65px;
  width: 80px;
  height: 145px;
  border-radius: 45% 45% 18% 18%;
  background: linear-gradient(#d3b675, #3a2746);
}

.art-story i:nth-child(2) {
  position: absolute;
  right: 24px;
  bottom: 72px;
  width: 130px;
  height: 92px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(12,9,17,0.78);
}

.art-story i:nth-child(3) {
  position: absolute;
  right: 45px;
  bottom: 133px;
  width: 86px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 14px rgba(216,186,118,.35), 0 28px rgba(216,186,118,.18);
}

.art-progression {
  background:
    radial-gradient(circle at 20% 40%, rgba(216,186,118,0.18), transparent 19%),
    linear-gradient(145deg, #21152f, #0c0912);
}

.art-progression i {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
}

.art-progression i::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.art-progression i:nth-child(1) { left: 9%; top: 68px; }
.art-progression i:nth-child(2) { left: 32%; top: 108px; }
.art-progression i:nth-child(3) { right: 32%; top: 68px; }
.art-progression i:nth-child(4) { right: 9%; top: 108px; }

.future-section {
  overflow: hidden;
}

.future-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -15%;
  width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(143,109,219,0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(143,109,219,0.04);
}

.future-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.future-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.future-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255,255,255,0.02);
  color: #d5cddb;
  font-size: 0.76rem;
}

.rank-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.035), transparent), var(--surface-strong);
  box-shadow: var(--shadow);
}

.rank-header {
  display: grid;
  padding: 24px 25px 18px;
  border-bottom: 1px solid var(--line);
}

.rank-header span {
  color: var(--violet-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rank-header strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.rank-card ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.rank-card li {
  display: grid;
  grid-template-columns: 34px 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.rank-card li > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.rank-card li > i {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background:
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px),
    linear-gradient(145deg, #403052, #16101f);
}

.rank-card li:nth-child(2) > i {
  background:
    radial-gradient(circle, var(--violet-bright) 0 3px, transparent 4px),
    linear-gradient(145deg, #403052, #16101f);
}

.rank-card li > div {
  display: grid;
}

.rank-card li strong {
  font-size: 0.88rem;
}

.rank-card li small {
  color: var(--text-soft);
  font-size: 0.7rem;
}

.rank-card li b {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.rank-card > p {
  margin: 0;
  padding: 13px 24px 15px;
  color: #81798b;
  font-size: 0.66rem;
  text-align: right;
}

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

.roadmap-column {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.018);
}

.roadmap-column h3 {
  margin: 17px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.roadmap-live .roadmap-status { color: var(--success); }
.roadmap-progress .roadmap-status { color: var(--gold); }
.roadmap-planned .roadmap-status { color: var(--violet-bright); }

.roadmap-column ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.roadmap-column li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-column li::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.support-section {
  padding-bottom: 95px;
}

.support-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 50%, rgba(143,109,219,0.17), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 55%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.support-mark {
  display: grid;
  place-items: center;
}

.support-copy > p {
  max-width: 660px;
  margin: 17px 0 0;
}

.support-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.support-note {
  font-size: 0.76rem;
}

.support-actions {
  display: grid;
  justify-items: center;
  min-width: 200px;
}

.support-actions small {
  margin-top: 10px;
  color: #81798b;
  font-size: 0.66rem;
}

.community-section {
  padding-top: 75px;
}

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

.community-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,0.018);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.community-card:hover,
.community-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(216,186,118,0.035);
}

.community-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--gold);
}

.community-card div {
  display: grid;
}

.community-card small {
  color: var(--text-soft);
}

.community-card b {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.community-card-disabled {
  opacity: 0.55;
  cursor: default;
}

.community-card-disabled:hover {
  transform: none;
  border-color: var(--line);
  background: rgba(255,255,255,0.018);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(143,109,219,0.22), transparent 26%),
    linear-gradient(180deg, var(--bg), #100b18);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(216,186,118,0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-cta .container {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.final-cta > .container > p:not(.eyebrow) {
  margin: 20px auto 0;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07060a;
}

.footer-layout {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px 50px;
  padding-block: 34px;
}

.footer-brand .brand-mark svg circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.footer-brand .brand-mark svg path {
  fill: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.footer-layout > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #716a79;
  font-size: 0.7rem;
}

.gallery-modal {
  width: min(620px, calc(100% - 30px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: var(--shadow);
}

.gallery-modal::backdrop {
  background: rgba(4,3,7,0.82);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: white;
  cursor: pointer;
  font-size: 1.3rem;
}

.modal-content {
  padding: 18px 18px 28px;
}

.modal-preview {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 46%, rgba(216,186,118,0.42), transparent 7%, rgba(143,109,219,0.2) 18%, transparent 35%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,0.035) 71px),
    linear-gradient(145deg, #2b1b40, #0a0710);
}

.modal-eclipse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 155px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(143,109,219,0.35), inset 0 0 40px rgba(216,186,118,0.12);
}

.modal-content h3 {
  margin: 22px 7px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.modal-content p {
  margin: 8px 7px 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes pulse-flare {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(0.9); }
  50% { opacity: 0.95; transform: translateX(-50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 17px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 7vw, 5rem);
  }

  .battlefield {
    height: 360px;
  }

  .split-layout,
  .future-layout {
    gap: 55px;
  }

  .support-card {
    grid-template-columns: 115px 1fr;
  }

  .support-actions {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

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

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

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

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

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

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 100px 30px 50px;
    background:
      radial-gradient(circle at 50% 30%, rgba(143,109,219,0.16), transparent 30%),
      rgba(8,7,13,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 11px 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
  }

  .main-nav > a:not(.button)::after {
    bottom: 6px;
  }

  .main-nav .button {
    min-width: 210px;
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-layout,
  .split-layout,
  .future-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 650px;
    margin: 20px auto 0;
  }

  .eclipse-card {
    transform: none;
  }

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

  .fact-grid > div:nth-child(2) {
    border-right: 0;
  }

  .fact-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .feature-card:last-child,
  .roadmap-column:last-child,
  .community-card:last-child {
    grid-column: 1 / -1;
  }

  .lore-panel {
    order: 2;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .section-copy {
    order: 1;
  }

  .future-layout .section-copy {
    order: initial;
  }

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

  .support-card {
    grid-template-columns: 100px 1fr;
    padding: 38px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .brand small {
    display: none;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.3rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 10px 16px;
  }

  .battlefield {
    height: 285px;
  }

  .unit {
    bottom: 63px;
    transform: scale(0.72);
  }

  .unit-a1 { left: 7%; transform: scale(.78); }
  .unit-a2 { left: 20%; bottom: 98px; transform: scale(.64); }
  .unit-a3 { left: 31%; bottom: 55px; transform: scale(.72); }
  .unit-e1 { right: 7%; transform: scaleX(-1) scale(.8); }
  .unit-e2 { right: 20%; bottom: 99px; transform: scaleX(-1) scale(.64); }
  .unit-e3 { right: 31%; bottom: 54px; transform: scaleX(-1) scale(.72); }

  .battle-hud {
    flex-wrap: wrap;
  }

  .battle-hud > div:first-child {
    min-width: 120px;
  }

  .battle-hud button {
    display: none;
  }

  .rune-one {
    right: -8px;
  }

  .rune-two {
    left: -8px;
  }

  .quick-facts {
    margin-top: -20px;
  }

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

  .fact-grid > div {
    padding: 17px;
  }

  .section {
    padding: 90px 0;
  }

  .video-section {
    padding-top: 110px;
  }

  .section-heading h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .feature-grid,
  .roadmap-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .roadmap-column:last-child,
  .community-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
    padding: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 255px;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .lore-panel {
    min-height: 570px;
  }

  .sigil-large {
    width: 270px;
  }

  .lore-card {
    width: 185px;
  }

  .lore-card-one { left: 0; }
  .lore-card-two { right: 0; }
  .lore-card-three { left: 10px; }

  .rank-card li {
    grid-template-columns: 27px 34px 1fr auto;
    gap: 9px;
    padding-inline: 15px;
  }

  .rank-card li b {
    font-size: 0.88rem;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 24px;
  }

  .support-mark {
    justify-content: start;
  }

  .support-actions {
    grid-column: auto;
  }

  .support-actions .button {
    width: 100%;
  }

  .final-cta {
    padding: 110px 0;
  }

  .footer-links {
    gap: 14px 20px;
  }

  .modal-preview {
    height: 230px;
  }
}


/* Web 1.2 — identidad visual y capturas oficiales */
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.real-game-card {
  background: #08060d;
}

.hero-shot-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1388 / 560;
  background: #09060e;
}

.hero-shot-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 6, 13, 0.02), rgba(8, 6, 13, 0.18)),
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(5, 3, 9, 0.34));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
}

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

.card-play-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(216,186,118,0.35);
  border-radius: 7px;
  background: rgba(216,186,118,0.08);
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-visible .gallery-image {
  transform: scale(1.035);
  filter: saturate(1.15) contrast(1.04);
}

.gallery-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4,3,7,0.02), rgba(4,3,7,0.1) 45%, rgba(4,3,7,0.56));
}

.gallery-card::after {
  z-index: 1;
}

.gallery-label {
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
}

.modal-preview {
  height: auto;
  max-height: min(67vh, 620px);
  display: grid;
  place-items: center;
  background: #06040a;
}

.modal-preview img {
  width: 100%;
  max-height: min(67vh, 620px);
  display: block;
  object-fit: contain;
}

.gallery-modal {
  width: min(1040px, calc(100% - 30px));
}

@media (max-width: 600px) {
  .card-play-link {
    display: none;
  }

  .modal-preview,
  .modal-preview img {
    max-height: 58vh;
  }
}




/* V1.2.4 — reproductor compatible con archivo local y hosting */
.video-launcher {
  position: relative;
  min-height: 280px;
  cursor: pointer;
  isolation: isolate;
}

.video-launcher > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-launcher-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 12%, rgba(8, 6, 13, 0.18) 38%, rgba(8, 6, 13, 0.64) 100%),
    linear-gradient(180deg, rgba(8, 6, 13, 0.08), rgba(8, 6, 13, 0.4));
  transition: background 180ms ease;
}

.video-launcher:hover .video-launcher-shade,
.video-launcher:focus-within .video-launcher-shade {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 14%, rgba(8, 6, 13, 0.12) 42%, rgba(8, 6, 13, 0.52) 100%),
    linear-gradient(180deg, rgba(8, 6, 13, 0.04), rgba(8, 6, 13, 0.3));
}

.video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid rgba(241, 214, 152, 0.68);
  border-radius: 999px;
  background: rgba(10, 7, 17, 0.82);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  cursor: pointer;
  font-weight: 800;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(25, 16, 34, 0.94);
  transform: translate(-50%, -50%) scale(1.035);
}

.video-play-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), #a78950);
  color: #15100a;
  font-size: 0.82rem;
  padding-left: 2px;
}

.video-frame.is-playing {
  background: #050408;
}

.video-frame.is-playing iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  text-align: center;
}

.video-fallback a {
  color: var(--gold-bright);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .video-play-button {
    min-height: 52px;
    width: calc(100% - 36px);
    justify-content: center;
    padding-inline: 16px;
  }
}
