@font-face {
  font-family: "Bladfour";
  src:
    url("fonts/BladfourReg.otf") format("opentype"),
    url("fonts/BladfourRegular-MAq5r.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg-0: #060509;
  --bg-1: #100b16;
  --bone: #ded6a9;
  --gold: #d39b41;
  --shadow: rgba(0, 0, 0, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--bone);
  background:
    radial-gradient(circle at 50% 18%, rgba(122, 78, 35, 0.28), transparent 34rem),
    radial-gradient(circle at 50% 100%, rgba(42, 64, 47, 0.2), transparent 32rem),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 72%);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.34;
  mix-blend-mode: overlay;
}

.seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  z-index: 10;
  top: 0;
  left: 0;
  font-size: 150%;
  padding: 3%;
  display: flex;
  justify-content: center;
}

.brand {
  display: inline-block;
  color: var(--bone);
  text-decoration: none;
  text-align: center;
  font-family: "Bladfour", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 0 #000,
    0 0 18px rgba(211, 155, 65, 0.42);
}

.brand:hover,
.brand:focus-visible {
  color: #f1df9f;
  outline: none;
}

.lander {
  flex: 1;
  padding: 3%;
}

.preview-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding-bottom: 1%;
}

.preview-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  border: 1px solid rgba(222, 214, 169, 0.22);
  background: #0d0b10;
  box-shadow:
    0 24px 70px var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 236, 168, 0.12), transparent 34%),
    radial-gradient(circle at 50% 42%, transparent 38%, rgba(0, 0, 0, 0.34) 100%);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(211, 155, 65, 0.2);
  box-shadow: inset 0 0 36px rgba(0, 0, 0, 0.72);
}

.preview-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: filter 220ms ease, opacity 220ms ease;
}

.preview-card--play:hover img,
.preview-card--play:focus-visible img {
  filter: contrast(1.08) saturate(1.08);
}

.preview-card--play:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.preview-card--soon {
  cursor: default;
  pointer-events: none;
  opacity: 0.54;
  filter: grayscale(0.35) brightness(0.62);
}

.preview-card--soon::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 32%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.58) 100%);
}

.soon-label {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(222, 214, 169, 0.26);
  color: rgba(239, 224, 177, 0.74);
  background: rgba(5, 4, 8, 0.62);
  font-size: clamp(0.86rem, 1.4vw, 1.08rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 1100px) {
  .preview-card {
    max-width: 500px;
  }
}

@media (max-width: 1120px) {
  .lander {
    align-items: start;
    padding-top: 2%;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    width: min(100%, 640px);
  }

  .preview-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    font-size: clamp(1.65rem, 10vw, 2.5rem);
  }

  .lander {
    padding-inline: 1rem;
  }

  .soon-label {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }
}

.site-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 7% 1rem 1rem;
  text-align: center;
}

.footer-copy,
.footer-link {
  margin: 0;
  color: rgba(222, 214, 169, 0.34);
  text-decoration: none;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.35;
  text-shadow: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: rgba(222, 214, 169, 0.56);
  outline: none;
}
