:root {
  --gold: #f4e7c1;
  --mutedGold: #c9b56d;
  --dark: #050304;
  --red: #7b1113;
  --panelText: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--dark);
  color: var(--panelText);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

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

.siteNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.navBrand {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(244, 231, 193, 0.45);
}

.navLinks {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--mutedGold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.navLinks a {
  opacity: 0.82;
}

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

.navSocialButton {
  color: var(--mutedGold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.navSocialButton:hover {
  opacity: 1;
  color: var(--gold);
}

.pageSection {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.sectionShade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(100, 40, 120, 0.08), rgba(0, 0, 0, 0.82)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.88));
  z-index: 1;
}

.characterOverlay {
  position: absolute;
  bottom: 0;
  z-index: 3;
  max-height: 78vh;
  max-width: 54vw;
  opacity: 0.72;
  filter: drop-shadow(0 0 28px rgba(130, 60, 170, 0.5));
  pointer-events: none;
}

.overlayRight {
  right: 0;
}

.overlayLeft {
  left: 0;
}

.contentWrap {
  position: relative;
  z-index: 5;
  width: min(920px, 94vw);
  display: flex;
}

.characterRight .contentWrap {
  justify-content: flex-start;
}

.characterLeft .contentWrap {
  justify-content: flex-end;
}

.heroPanel,
.storyPanel {
  position: relative;
  width: min(760px, 94vw);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storyPanel {
  width: min(700px, 92vw);
}


.panelContent {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
}

.floatingText {
  background: none;
  border: none;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mutedGold);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.95;
  text-shadow:
    0 0 14px rgba(0, 0, 0, 1),
    0 0 28px rgba(244, 231, 193, 0.25);
}

.storyPanel h1 {
  font-size: clamp(28px, 4.6vw, 48px);
}

.bodyText {
  max-width: 620px;
  margin: 22px auto 0;
  color: #f5f0e6;
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.5;
  text-shadow: 0 0 12px rgba(0, 0, 0, 1);
}

.contractBox {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.copyButton {
  padding: 14px 22px;
  color: var(--gold);
  background: rgba(123, 17, 19, 0.88);
  border: 1px solid rgba(244, 231, 193, 0.65);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contractText {
  max-width: 320px;
  color: var(--mutedGold);
  font-size: 13px;
  word-break: break-all;
}

.buttonRow {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.assetButton {
  min-width: 190px;
  min-height: 54px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    linear-gradient(to bottom, rgba(123, 17, 19, 0.95), rgba(35, 5, 8, 0.95));
  border: 1px solid rgba(244, 231, 193, 0.55);
  box-shadow:
    inset 0 0 18px rgba(255, 220, 140, 0.12),
    0 0 22px rgba(0, 0, 0, 0.7);
}

.secondaryAction {
  background:
    linear-gradient(to bottom, rgba(24, 24, 24, 0.95), rgba(5, 5, 5, 0.95));
}

.assetButton:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 231, 193, 0.95);
  box-shadow:
    inset 0 0 22px rgba(255, 220, 140, 0.18),
    0 0 28px rgba(123, 17, 19, 0.55);
}

.videoFrame {
  width: min(560px, 100%);
  margin: 26px auto 0;
  padding: 10px;
  border: 1px solid rgba(244, 231, 193, 0.48);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.8);
}

.videoFrame video {
  display: block;
  width: 100%;
  max-height: 320px;
  background: #000;
}

.fallback {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
}

@media (max-width: 820px) {
  .siteNav {
    height: 58px;
    padding: 0 18px;
  }

  .navLinks {
    gap: 12px;
    font-size: 11px;
  }

  .navBrand {
    font-size: 14px;
    letter-spacing: 0.04em;
    max-width: 220px;
    line-height: 1.1;
  }

  .pageSection {
    padding: 100px 14px 70px;
  }

    .characterOverlay {
    max-width: 95vw;
    max-height: 58vh;
    opacity: 0.5;
    bottom: 3vh;
  }

  .overlayRight {
    right: -22vw;
  }

  .overlayLeft {
    left: -22vw;
  }

  .contentWrap {
    justify-content: center !important;
  }

  .heroPanel,
  .storyPanel {
    width: 100%;
    min-height: 360px;
  }

  .panelContent {
    padding: 58px 34px;
  }

  .bodyText {
    font-size: 17px;
  }

  .assetButton {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .navLinks a {
    display: none;
  }

  .navLinks a.navSocialButton,
  .navLinks a:last-child {
    display: inline-block;
  }
}

.navSocialButton {
  color: var(--mutedGold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.navSocialButton:hover {
  opacity: 1;
  color: var(--gold);
}

  .panelContent {
    padding: 50px 26px;
  }

  h1 {
    font-size: 36px;
  }

  .storyPanel h1 {
    font-size: 31px;
  }
}

.siteFooter {
  position: relative;
  padding: 80px 24px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.92)),
    #050304;
  border-top: 1px solid rgba(244, 231, 193, 0.12);
}

.footerInner {
  width: min(920px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.footerTitle {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footerText {
  margin: 0 auto 18px;
  max-width: 860px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.8;
}

.footerCopyright {
  margin-top: 40px;
  color: rgba(201,181,109,0.58);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
