* {
  box-sizing: border-box;
}

:root {
  --black: #030304;
  --panel: rgba(8, 8, 10, 0.92);
  --panel-soft: rgba(9, 9, 12, 0.78);
  --text: #f4efe8;
  --muted: #b7aaa0;
  --dim: #80756c;
  --red: #c51420;
  --red-hot: #ff2b3c;
  --gold: #caa160;
  --line: rgba(195, 20, 32, 0.55);
  --line-soft: rgba(255, 255, 255, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.92)),
    url("assets/site-background.png") center top / cover fixed no-repeat,
    var(--black);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

.topbar {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 72px;
  display: grid;
  grid-template-columns: 260px 1fr 250px;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 70px);
  background: linear-gradient(180deg, rgba(0,0,0,.94), rgba(0,0,0,.55));
  border-bottom: 1px solid rgba(195, 20, 32, .32);
  backdrop-filter: blur(10px);
}

.logo-lockup img {
  width: 185px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 3vw, 48px);
  height: 100%;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #eee6de;
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px black;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red-hot);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--red);
  box-shadow: 0 0 12px var(--red-hot);
}

.social-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  color: #aaa29a;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.social-nav a:hover {
  color: var(--red-hot);
}

.hero {
  position: relative;
  min-height: 595px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero > img {
  width: 100%;
  height: 595px;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,0,0,.04), rgba(0,0,0,.55) 56%, rgba(0,0,0,.90) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.25) 55%, rgba(0,0,0,.88));
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 53%;
  width: min(780px, 88vw);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-logo {
  width: min(540px, 78vw);
  margin: 0 auto 12px;
  filter: drop-shadow(0 18px 35px #000);
}

.hero-kicker,
.hero-subline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .36em;
  color: #e8ded5;
  text-shadow: 0 6px 18px black;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
}

.hero-subline {
  margin-top: 12px;
  color: var(--red-hot);
  letter-spacing: .42em;
}

.hero-button,
.outline-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 260px;
  height: 52px;
  margin-top: 28px;
  border: 1px solid var(--red);
  background: rgba(0,0,0,.38);
  color: #f1ebe4;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  box-shadow: inset 0 0 18px rgba(195,20,32,.15), 0 0 18px rgba(195,20,32,.18);
}

.hero-button:hover,
.outline-button:hover {
  background: rgba(195,20,32,.18);
  color: white;
}

.about-strip,
.games-panel,
.join-panel {
  width: min(1740px, 94vw);
  margin: 0 auto;
  border-left: 1px solid rgba(195,20,32,.22);
  border-right: 1px solid rgba(195,20,32,.22);
}

.about-strip {
  display: grid;
  grid-template-columns: 330px 1fr 340px;
  gap: 28px;
  align-items: center;
  min-height: 122px;
  padding: 22px 40px;
  background: rgba(4,4,5,.80);
  border-bottom: 1px solid rgba(195,20,32,.35);
}

.about-icon {
  height: 92px;
  background:
    radial-gradient(circle at center, rgba(195,20,32,.18), transparent 60%),
    url("assets/footer-divider.png") center / cover no-repeat;
  opacity: .8;
}

.about-copy h1 {
  margin: 0 0 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .96rem;
}

.about-strip .outline-button {
  margin: 0;
  justify-self: end;
  min-width: 240px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 34px 14px;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-title h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.games-panel,
.join-panel {
  background: rgba(3,3,4,.78);
  border-bottom: 1px solid rgba(195,20,32,.35);
}

.game-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0 24px 22px;
}

.mini-game-card {
  min-height: 238px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(195,20,32,.48);
  background: #060607;
  box-shadow: 0 20px 45px rgba(0,0,0,.45);
}

.mini-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28) 38%, rgba(0,0,0,.88) 100%);
}

.mini-game-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  transition: transform .5s ease;
}

.mini-game-card:hover img {
  transform: scale(1.05);
}

.mini-game-body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 20px 24px;
}

.mini-game-body h3 {
  margin: 0 0 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  text-shadow: 0 4px 12px black;
}

.genre {
  margin: 0;
  color: #e9ded2;
  font-family: Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status {
  margin: 4px 0 0;
  color: var(--red-hot);
  font-size: .82rem;
}

.mini-game-body a {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  height: 32px;
  min-width: 120px;
  padding: 0 18px;
  border: 1px solid rgba(195,20,32,.72);
  color: #f2e7dc;
  font-family: Arial, sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.view-all-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 0 36px 20px;
}

.outline-button.small {
  min-width: 170px;
  height: 38px;
  margin: 0;
  font-size: .66rem;
}

.join-panel {
  padding-bottom: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 0 24px 22px;
}

.contact-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  padding: 18px 18px;
  background: rgba(8,8,10,.84);
  border: 1px solid rgba(195,20,32,.48);
  box-shadow: inset 0 0 28px rgba(195,20,32,.08);
}

.contact-card:hover {
  border-color: var(--red-hot);
  background: rgba(25, 4, 7, .58);
}

.contact-icon {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(195,20,32,.2);
  color: var(--red-hot);
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  box-shadow: inset 0 0 20px rgba(255,255,255,.08), 0 0 16px rgba(195,20,32,.15);
}

.contact-card strong {
  align-self: end;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  color: #eadfd3;
}

.contact-card span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.35;
}

.contact-form-section {
  padding: 48px 0 64px;
}

.contact-form-section .section-title {
  margin-bottom: 36px;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.form-group label {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: rgba(8,8,10,.84);
  border: 1px solid rgba(195,20,32,.38);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red-hot);
  box-shadow: 0 0 12px rgba(195,20,32,.22);
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.success-message {
  max-width: 580px;
  margin: 60px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.success-message h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  color: var(--text);
}

.success-message p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.footer {
  width: min(1740px, 94vw);
  margin: 0 auto;
  padding: 10px 0 28px;
}

.footer-divider img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  opacity: .78;
}

.footer-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: .86rem;
}

.footer-inner img {
  width: 120px;
  height: 50px;
  object-fit: contain;
  justify-self: end;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer-inner nav a:hover {
  color: var(--red-hot);
}

.footer-inner nav span {
  color: var(--red);
  font-size: .7rem;
}

@media (max-width: 1260px) {
  .topbar {
    grid-template-columns: 190px 1fr;
    height: auto;
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .social-nav {
    display: none;
  }

  .logo-lockup img {
    width: 150px;
  }

  .main-nav {
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

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

  .about-icon {
    display: none;
  }

  .about-strip .outline-button {
    justify-self: start;
  }

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

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

  .footer-inner img {
    justify-self: center;
  }

  .footer-inner nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .main-nav a {
    font-size: .72rem;
  }

  .hero,
  .hero > img {
    min-height: 520px;
    height: 520px;
  }

  .hero-content {
    top: 56%;
  }

  .hero-kicker,
  .hero-subline {
    letter-spacing: .18em;
  }

  .about-strip,
  .games-panel,
  .join-panel,
  .footer {
    width: 100%;
  }

  .about-strip {
    padding: 24px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title span {
    display: none;
  }

  .game-row,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .mini-game-card img {
    height: 280px;
  }

  .mini-game-body a {
    position: static;
    margin-top: 14px;
  }

  .contact-card {
    grid-template-columns: 52px 1fr;
  }
}



/* ================================
   V3 OUR GAMES SHOWCASE UPGRADE
   ================================ */

.games-panel {
  display: none;
}

.games-showcase {
  position: relative;
  width: min(1740px, 94vw);
  margin: 0 auto;
  padding: 0 30px 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(195,20,32,.12), transparent 36%),
    rgba(3,3,4,.84);
  border-left: 1px solid rgba(195,20,32,.22);
  border-right: 1px solid rgba(195,20,32,.22);
  border-bottom: 1px solid rgba(195,20,32,.35);
  overflow: hidden;
}

.games-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(195,20,32,.08), transparent),
    url("assets/site-background.png") center / cover no-repeat;
  opacity: .34;
  pointer-events: none;
}

.games-topline,
.games-heading,
.showcase-grid,
.view-all-bottom-wrap {
  position: relative;
  z-index: 2;
}

.games-topline {
  display: grid;
  grid-template-columns: 1fr auto 260px;
  align-items: center;
  gap: 24px;
  height: 82px;
  border-bottom: 1px solid rgba(195,20,32,.48);
}

.topline-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195,20,32,.70), transparent);
}

.top-gem {
  width: 34px;
  height: 34px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #280306, #c51420, #ff4150);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 0 22px rgba(255,43,60,.45);
}

.view-all-top,
.view-all-bottom,
.learn-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--red);
  background: rgba(0,0,0,.38);
  color: #f1ebe4;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  box-shadow: inset 0 0 18px rgba(195,20,32,.15), 0 0 18px rgba(195,20,32,.18);
}

.view-all-top {
  height: 48px;
  min-width: 230px;
}

.view-all-top:hover,
.view-all-bottom:hover,
.learn-more:hover {
  background: rgba(195,20,32,.18);
  color: white;
  box-shadow: inset 0 0 22px rgba(255,43,60,.18), 0 0 24px rgba(255,43,60,.25);
}

.games-heading {
  text-align: center;
  padding: 18px 0 30px;
}

.games-heading h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: .95;
  text-shadow: 0 8px 28px black;
}

.games-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: clamp(.78rem, 1vw, 1.05rem);
}

.al-diamond {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 22px auto 0;
  background: rgba(0,0,0,.62);
  border: 1px solid var(--line);
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(195,20,32,.35);
  color: transparent;
}

.al-diamond::after {
  content: "AL";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #e7e0d8;
  transform: rotate(-45deg);
  font-size: 1rem;
  letter-spacing: .08em;
}

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

.showcase-card {
  position: relative;
  min-height: 675px;
  background: rgba(4,4,5,.92);
  border: 1px solid rgba(195,20,32,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), inset 0 0 40px rgba(195,20,32,.05);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.showcase-card::before,
.showcase-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 18px var(--red-hot);
  z-index: 3;
}

.showcase-card::before {
  bottom: -7px;
}

.showcase-card::after {
  top: -7px;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,43,60,.9);
  box-shadow: 0 32px 90px rgba(0,0,0,.7), 0 0 34px rgba(255,43,60,.16);
}

.showcase-image {
  height: 420px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease, filter .5s ease;
}

.showcase-card:hover .showcase-image img {
  transform: scale(1.055);
  filter: brightness(1.08);
}

.showcase-body {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 26px 28px 30px;
}

.showcase-icon {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(195,20,32,.45);
  background: rgba(0,0,0,.34);
  font-size: 1.35rem;
}

.showcase-genre,
.showcase-status,
.showcase-tagline {
  margin: 0;
}

.showcase-genre {
  color: #e7ded4;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .95rem;
}

.showcase-status {
  margin-top: 8px;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

.showcase-tagline {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--muted);
  font-style: italic;
  font-size: 1.06rem;
}

.learn-more {
  grid-column: 1 / -1;
  width: 210px;
  height: 48px;
  margin-top: 18px;
  justify-self: center;
}

.view-all-bottom-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px 0 0;
}

.view-all-bottom-wrap::before,
.view-all-bottom-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 360px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.view-all-bottom {
  height: 58px;
  min-width: 310px;
  margin: 0 24px;
  font-size: .9rem;
}

@media (max-width: 1400px) {
  .showcase-card {
    min-height: 620px;
  }

  .showcase-image {
    height: 360px;
  }
}

@media (max-width: 1260px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .games-showcase {
    width: 100%;
    padding: 0 16px 38px;
  }

  .games-topline {
    grid-template-columns: 1fr;
    height: auto;
    padding: 24px 0 0;
  }

  .topline-rule,
  .top-gem {
    display: none;
  }

  .view-all-top {
    justify-self: center;
  }

  .games-heading h2 {
    font-size: clamp(2.4rem, 16vw, 4rem);
    letter-spacing: .18em;
  }

  .games-heading p {
    letter-spacing: .14em;
  }

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

  .showcase-card {
    min-height: auto;
  }

  .showcase-image {
    height: 330px;
  }

  .view-all-bottom-wrap::before,
  .view-all-bottom-wrap::after {
    display: none;
  }

  .view-all-bottom {
    min-width: 250px;
  }
}


/* ================================
   TANGLED TIDES GAME PAGE
   ================================ */

.game-page {
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.92)),
    url("assets/site-background.png") center top / cover fixed no-repeat;
}

.game-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.game-hero > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.9) brightness(.72);
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(0,0,0,.10), rgba(0,0,0,.68) 58%, rgba(0,0,0,.96) 100%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.22), rgba(0,0,0,.84));
}

.game-hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 120px);
  bottom: clamp(52px, 10vw, 120px);
  width: min(900px, 88vw);
}

.game-kicker,
.page-eyebrow {
  margin: 0 0 14px;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-family: Arial, sans-serif;
  font-size: .82rem;
}

.game-hero-content h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .92;
  text-shadow: 0 8px 35px black;
}

.game-hero-line {
  max-width: 780px;
  color: #e7ddd3;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.65;
}

.game-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 8px;
}

.game-meta-row span {
  padding: 10px 16px;
  color: var(--gold);
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(195,20,32,.48);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.page-buttons {
  margin-top: 26px;
}

.page-buttons .outline-button {
  min-width: 220px;
  height: 52px;
  margin-top: 28px;
}

.game-content-shell,
.story-section,
.feature-section,
.locations-section,
.game-cta {
  width: min(1440px, 92vw);
  margin: 0 auto;
}

.game-content-shell {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  padding: clamp(48px, 7vw, 100px) 0;
}

.game-overview-card,
.game-fact-panel,
.feature-card,
.story-copy,
.story-image,
.game-cta {
  background: rgba(6,6,8,.86);
  border: 1px solid rgba(195,20,32,.36);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.game-overview-card,
.game-fact-panel,
.story-copy,
.game-cta {
  padding: clamp(28px, 4vw, 54px);
}

.game-overview-card h2,
.story-copy h2,
.game-cta h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.game-overview-card p,
.story-copy p,
.game-cta p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.game-fact-panel h3 {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
}

.game-fact-panel dl {
  margin: 0;
}

.game-fact-panel dt {
  margin-top: 22px;
  color: #eee3d8;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: Arial, sans-serif;
  font-size: .78rem;
}

.game-fact-panel dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-section,
.locations-section {
  padding: 24px 0 70px;
}

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

.feature-card {
  padding: 30px;
  min-height: 230px;
}

.feature-card h3 {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 88px;
}

.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.82);
}

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

.location-list div {
  padding: 20px 18px;
  text-align: center;
  background: rgba(6,6,8,.82);
  border: 1px solid rgba(195,20,32,.36);
  color: #e9ded2;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, sans-serif;
  font-size: .78rem;
}

.game-cta {
  margin-bottom: 60px;
  text-align: center;
}

.compact-contact {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .game-content-shell,
  .story-section {
    grid-template-columns: 1fr;
  }

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

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

  .story-image img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .game-hero,
  .game-hero > img {
    min-height: 600px;
    height: 600px;
  }

  .game-hero-content {
    left: 22px;
    right: 22px;
    bottom: 44px;
    width: auto;
  }

  .game-hero-content h1 {
    letter-spacing: .12em;
  }

  .feature-grid,
  .location-list {
    grid-template-columns: 1fr;
  }
}


/* ================================
   NOCTURNE HOLLOW GAME PAGE
   ================================ */

.nocturne-page .game-hero > img {
  filter: saturate(.82) brightness(.68) contrast(1.08);
}

.nocturne-page .game-hero-overlay {
  background:
    radial-gradient(circle at 52% 38%, rgba(0,0,0,.08), rgba(0,0,0,.70) 56%, rgba(0,0,0,.97) 100%),
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.28), rgba(0,0,0,.88));
}

.nocturne-page .game-meta-row span,
.nocturne-page .game-overview-card,
.nocturne-page .game-fact-panel,
.nocturne-page .feature-card,
.nocturne-page .story-copy,
.nocturne-page .story-image,
.nocturne-page .game-cta,
.nocturne-page .location-list div {
  border-color: rgba(126, 180, 152, .28);
}

.nocturne-page .game-kicker,
.nocturne-page .page-eyebrow {
  color: #9bd4b4;
}

.nocturne-page .game-meta-row span,
.nocturne-page .feature-card h3,
.nocturne-page .game-fact-panel h3 {
  color: #b8d9bd;
}

.nocturne-page .hero-button,
.nocturne-page .outline-button,
.nocturne-page .compact-contact a {
  border-color: rgba(126, 180, 152, .45);
  box-shadow: inset 0 0 18px rgba(126,180,152,.10), 0 0 18px rgba(126,180,152,.10);
}

.nocturne-page .hero-button:hover,
.nocturne-page .outline-button:hover,
.nocturne-page .compact-contact a:hover {
  background: rgba(126,180,152,.12);
  box-shadow: inset 0 0 22px rgba(126,180,152,.16), 0 0 24px rgba(126,180,152,.20);
}


/* ================================
   THE TAVERN AT THE END OF THE ROAD PAGE
   ================================ */

.tavern-page .game-hero > img {
  filter: saturate(.98) brightness(.74) contrast(1.06);
}

.tavern-page .game-hero-overlay {
  background:
    radial-gradient(circle at 54% 39%, rgba(0,0,0,.04), rgba(0,0,0,.60) 56%, rgba(0,0,0,.96) 100%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.24), rgba(0,0,0,.88));
}

.tavern-page .game-meta-row span,
.tavern-page .game-overview-card,
.tavern-page .game-fact-panel,
.tavern-page .feature-card,
.tavern-page .story-copy,
.tavern-page .story-image,
.tavern-page .game-cta,
.tavern-page .location-list div {
  border-color: rgba(218, 142, 55, .34);
}

.tavern-page .game-kicker,
.tavern-page .page-eyebrow {
  color: #f0a94d;
}

.tavern-page .game-meta-row span,
.tavern-page .feature-card h3,
.tavern-page .game-fact-panel h3 {
  color: #e6bb72;
}

.tavern-page .hero-button,
.tavern-page .outline-button,
.tavern-page .compact-contact a {
  border-color: rgba(218, 142, 55, .50);
  box-shadow: inset 0 0 18px rgba(218,142,55,.10), 0 0 18px rgba(218,142,55,.10);
}

.tavern-page .hero-button:hover,
.tavern-page .outline-button:hover,
.tavern-page .compact-contact a:hover {
  background: rgba(218,142,55,.12);
  box-shadow: inset 0 0 22px rgba(218,142,55,.16), 0 0 24px rgba(218,142,55,.20);
}


/* ================================
   THE LOWBORN MAGE PAGE
   ================================ */

.lowborn-page .game-hero > img {
  filter: saturate(.96) brightness(.70) contrast(1.08);
}

.lowborn-page .game-hero-overlay {
  background:
    radial-gradient(circle at 52% 38%, rgba(0,0,0,.06), rgba(0,0,0,.64) 55%, rgba(0,0,0,.97) 100%),
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.22), rgba(0,0,0,.88));
}

.lowborn-page .game-meta-row span,
.lowborn-page .game-overview-card,
.lowborn-page .game-fact-panel,
.lowborn-page .feature-card,
.lowborn-page .story-copy,
.lowborn-page .story-image,
.lowborn-page .game-cta,
.lowborn-page .location-list div {
  border-color: rgba(166, 113, 235, .34);
}

.lowborn-page .game-kicker,
.lowborn-page .page-eyebrow {
  color: #c99bff;
}

.lowborn-page .game-meta-row span,
.lowborn-page .feature-card h3,
.lowborn-page .game-fact-panel h3 {
  color: #d6b8ff;
}

.lowborn-page .hero-button,
.lowborn-page .outline-button,
.lowborn-page .compact-contact a {
  border-color: rgba(166, 113, 235, .50);
  box-shadow: inset 0 0 18px rgba(166,113,235,.10), 0 0 18px rgba(166,113,235,.10);
}

.lowborn-page .hero-button:hover,
.lowborn-page .outline-button:hover,
.lowborn-page .compact-contact a:hover {
  background: rgba(166,113,235,.12);
  box-shadow: inset 0 0 22px rgba(166,113,235,.16), 0 0 24px rgba(166,113,235,.20);
}


/* ================================
   EXPANDED WEBSITE SECTIONS
   ================================ */

.subpage-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.subpage-hero > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(.62) saturate(.88);
}

.subpage-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.10), rgba(0,0,0,.72) 62%, rgba(0,0,0,.96)),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.22), rgba(0,0,0,.88));
}

.subpage-hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 120px);
  bottom: clamp(42px, 8vw, 92px);
  width: min(900px, 88vw);
}

.subpage-hero-content h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .95;
  text-shadow: 0 8px 35px black;
}

.subpage-hero-content p:not(.game-kicker) {
  color: #e4d8cd;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.catalog-section,
.content-grid-section,
.contact-page-section,
.legal-section {
  width: min(1440px, 92vw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

.catalog-list {
  display: grid;
  gap: 28px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 24px;
  background: rgba(6,6,8,.86);
  border: 1px solid rgba(195,20,32,.36);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.catalog-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
}

.catalog-card h3,
.long-copy-card h2,
.news-card h3 {
  margin: 0 0 14px;
  color: #f2eadf;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
}

.catalog-card p,
.long-copy-card p,
.news-card p {
  color: var(--muted);
  line-height: 1.75;
}

.compact-button {
  min-width: 210px;
  height: 46px;
  margin-top: 14px;
}

.content-grid-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

.long-copy-card,
.news-card {
  background: rgba(6,6,8,.86);
  border: 1px solid rgba(195,20,32,.36);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  padding: clamp(28px, 4vw, 54px);
}

.value-stack {
  display: grid;
  gap: 20px;
}

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

.news-card span {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(195,20,32,.44);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: Arial, sans-serif;
  font-size: .72rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.big-contact {
  min-height: 170px;
}

.legal-copy h3 {
  margin-top: 34px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
}

@media (max-width: 1100px) {
  .catalog-card,
  .content-grid-section {
    grid-template-columns: 1fr;
  }

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

  .catalog-card img {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .subpage-hero,
  .subpage-hero > img {
    min-height: 430px;
    height: 430px;
  }

  .subpage-hero-content {
    left: 22px;
    right: 22px;
    width: auto;
  }

  .catalog-card {
    padding: 18px;
  }

  .news-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}
