:root {
  --foam-white: #F0F6FA;
  --harbor-sand: #DDE7EE;
  --ink-deepsea: #0C1C29;
  --muted-slate: #5B6F7D;
  --surf-blue: #1E7FA8;
  --coral-glow: #E2654F;
  --sea-green: #2FA37E;
  --deep-navy: #123B52;
  --sun-glint: #E9B949;
  --wave-line: rgba(12,28,41,0.10);
  --soft-shadow: 0 24px 80px rgba(12, 28, 41, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deepsea);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  background:
    linear-gradient(115deg, rgba(47,163,126,0.10), transparent 30%),
    linear-gradient(250deg, rgba(226,101,79,0.12), transparent 38%),
    repeating-linear-gradient(135deg, rgba(233,185,73,0.12) 0 1px, transparent 1px 26px),
    var(--foam-white);
}

body.noScroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.tideShell {
  min-height: 100vh;
  overflow: hidden;
}

.coastHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--wave-line);
  background: rgba(240, 246, 250, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(12, 28, 41, 0.08);
  border-radius: 8px;
}

.brandAnchor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
}

.brandSigil {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--foam-white);
  background:
    linear-gradient(135deg, var(--deep-navy), var(--sea-green)),
    var(--deep-navy);
  border-radius: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(240,246,250,0.22);
  overflow: hidden;
}

.brandSigil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navCurrent {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navCurrent a,
.beaconLinks a,
.carePanel a {
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.navCurrent a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted-slate);
  font-size: 16px;
  font-weight: 600;
}

.navCurrent a:hover,
.navCurrent a:focus-visible {
  color: var(--ink-deepsea);
  background: rgba(217, 138, 50, 0.14);
}

.heroCrest {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 680px;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 86px 72px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(12,28,41,0.80) 0%, rgba(12,28,41,0.56) 43%, rgba(12,28,41,0.16) 100%),
    url("../images/hero.png") center / cover no-repeat,
    linear-gradient(135deg, var(--deep-navy), var(--coral-glow));
  box-shadow: var(--soft-shadow);
}

.heroCrest::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% 44%;
  height: 84%;
  background: repeating-linear-gradient(110deg, rgba(233,185,73,0.34) 0 2px, transparent 2px 28px);
  transform: rotate(-4deg);
  opacity: 0.55;
  pointer-events: none;
}

.heroMist {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(233,185,73,0.42);
  border-radius: 6px;
  pointer-events: none;
}

.heroLede {
  position: relative;
  max-width: 640px;
  color: var(--foam-white);
  animation: chapterRise 780ms ease both;
}

.codeTag,
.sectionTide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-navy);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heroLede .codeTag,
.joinChannel .codeTag,
.gameCopy .codeTag,
.questionPier .codeTag,
.pageCrest .codeTag,
.ageCard .codeTag {
  color: var(--sun-glint);
}

.codeTag::before,
.sectionTide::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
}

h3 {
  font-size: 26px;
  font-weight: 700;
}

.heroLede p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(240,246,250,0.84);
  font-size: clamp(20px, 2vw, 25px);
}

.heroLinks,
.ageButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.surfButton,
.calmButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.surfButton {
  color: var(--ink-deepsea);
  background: linear-gradient(135deg, var(--sun-glint), #4FC3E8);
  box-shadow: 0 14px 28px rgba(30,127,168,0.28);
}

.calmButton {
  color: var(--foam-white);
  border-color: rgba(240,246,250,0.38);
  background: rgba(240,246,250,0.08);
}

.surfButton:hover,
.calmButton:hover,
.surfButton:focus-visible,
.calmButton:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(12,28,41,0.18);
}

.aboutCove,
.benefitReef,
.gameRow,
.gameDeck,
.questionPier,
.contactDock,
.policySheet,
.frameStage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.aboutCove {
  padding: 108px 0 80px;
}

.coveGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: start;
  margin-top: 18px;
}

.coveGrid p,
.joinChannel p,
.gameCopy p,
.pageCrest p,
.policySheet p,
.dockNote p,
.reefCard p {
  color: var(--muted-slate);
}

.gaugeBoard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(240,246,250,0.52);
  box-shadow: 0 18px 60px rgba(12,28,41,0.08);
}

.gaugeTile {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--wave-line);
  border-bottom: 1px solid var(--wave-line);
}

.gaugeTile:nth-child(2n) {
  border-right: 0;
}

.gaugeTile:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.gaugeTile strong {
  display: block;
  color: var(--coral-glow);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
}

.gaugeTile span {
  display: block;
  margin-top: 10px;
  color: var(--muted-slate);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.joinChannel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 100px;
  padding: 58px;
  border-radius: 8px;
  color: var(--foam-white);
  background:
    linear-gradient(135deg, rgba(47,93,69,0.96), rgba(12,28,41,0.92)),
    var(--deep-navy);
  box-shadow: var(--soft-shadow);
}

.joinChannel p {
  max-width: 620px;
  color: rgba(240,246,250,0.78);
}

.benefitReef {
  padding-bottom: 100px;
}

.benefitReef h2 {
  margin-top: 14px;
}

.reefList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--wave-line);
  background: var(--wave-line);
  border-radius: 8px;
  overflow: hidden;
}

.reefCard {
  min-height: 286px;
  padding: 26px;
  background: rgba(240,246,250,0.68);
  transition: transform 220ms ease, background 220ms ease;
}

.reefCard:hover {
  transform: translateY(-5px);
  background: rgba(221,231,238,0.78);
}

.reefCard span {
  color: var(--sea-green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.reefCard h3 {
  margin-top: 28px;
}

.gameRow {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  padding: 68px;
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  background: rgba(221,231,238,0.56);
}

.gameShot {
  padding: 18px;
  border: 1px solid rgba(233,185,73,0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(240,246,250,0.76), rgba(240,246,250,0.2));
}

.gameCopy p {
  max-width: 560px;
}

.gameDeck {
  position: relative;
  padding: 68px;
  overflow: hidden;
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240,246,250,0.78), rgba(221,231,238,0.44)),
    rgba(221,231,238,0.56);
  box-shadow: 0 18px 60px rgba(12,28,41,0.07);
}

.gameDeck::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: min(420px, 42%);
  height: 110px;
  border-top: 1px solid rgba(47,93,69,0.16);
  border-right: 1px solid rgba(47,93,69,0.16);
  pointer-events: none;
}

.gameDeckIntro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-top: 14px;
}

.gameDeckIntro p,
.deckCard p {
  color: var(--muted-slate);
}

.deckCards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.deckCard {
  --card-accent: var(--sun-glint);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(240,246,250,0.34);
  border-radius: 8px;
  color: var(--foam-white);
  background: var(--ink-deepsea);
  box-shadow: 0 18px 48px rgba(12,28,41,0.18);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.deckCard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,28,41,0.08) 0%, rgba(12,28,41,0.24) 38%, rgba(12,28,41,0.90) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 28%, transparent), transparent 58%);
  pointer-events: none;
}

.deckCard::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(240,246,250,0.22);
  border-radius: 6px;
  pointer-events: none;
}

.deckCard:hover,
.deckCard:focus-within {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--card-accent) 68%, rgba(240,246,250,0.34));
  box-shadow: 0 28px 68px rgba(12,28,41,0.25);
}

.deckCardMedia {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.deckCardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
  background: var(--ink-deepsea);
}

.deckCard:hover .deckCardMedia img,
.deckCard:focus-within .deckCardMedia img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.07);
}

.deckCardText {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
  padding: 30px;
}

.deckCardText .codeTag {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 70%, rgba(240,246,250,0.3));
  border-radius: 4px;
  color: var(--foam-white);
  background: rgba(12,28,41,0.34);
  backdrop-filter: blur(10px);
}

.deckCardText h3 {
  margin-top: 18px;
  color: var(--foam-white);
  font-size: clamp(31px, 3vw, 42px);
  text-shadow: 0 3px 16px rgba(0,0,0,0.28);
}

.deckCardText p {
  max-width: 32ch;
  margin: 12px 0 24px;
  color: rgba(240,246,250,0.78);
  font-size: 17px;
  line-height: 1.45;
}

.deckCardText .surfButton {
  width: auto;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--ink-deepsea);
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 80%, #fff 20%), var(--card-accent));
  box-shadow: 0 16px 30px rgba(0,0,0,0.24);
  margin-top: auto;
}

.deckCardMagic {
  --card-accent: #E9B949;
}

.deckCardAqua {
  --card-accent: #38B6D3;
}

.deckCardPirates {
  --card-accent: #E2654F;
}

.deckCardFruit {
  --card-accent: #4FBF8B;
}

.questionPier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 44px 0;
  border-top: 1px solid var(--wave-line);
  border-bottom: 1px solid var(--wave-line);
}

.questionPier .calmButton,
.pageCrest + .contactDock .calmButton {
  color: var(--ink-deepsea);
  border-color: rgba(12,28,41,0.18);
  background: rgba(240,246,250,0.48);
}

.pageCrest {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 88px 0 54px;
}

.pageCrest h1 {
  color: var(--ink-deepsea);
}

.pageCrest p {
  max-width: 760px;
  font-size: 22px;
}

.gameCrest {
  padding-bottom: 34px;
}

.contactDock {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  margin-bottom: 96px;
}

.dockNote,
.signalForm,
.policySheet {
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  background: rgba(240,246,250,0.62);
  box-shadow: 0 18px 60px rgba(12,28,41,0.07);
}

.dockNote {
  padding: 34px;
}

.plainMail,
.beaconMail {
  user-select: text;
}

.signalForm {
  display: grid;
  gap: 10px;
  padding: 34px;
}

.signalForm label {
  color: var(--ink-deepsea);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.signalForm input,
.signalForm select,
.signalForm textarea {
  width: 100%;
  border: 1px solid rgba(12,28,41,0.16);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink-deepsea);
  background: rgba(240,246,250,0.82);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.signalForm input:focus,
.signalForm select:focus,
.signalForm textarea:focus {
  border-color: var(--sea-green);
  box-shadow: 0 0 0 4px rgba(47,163,126,0.15);
}

.signalForm .surfButton {
  justify-self: start;
  margin-top: 8px;
}

.formEcho {
  margin: 0;
  color: var(--deep-navy);
  font-weight: 600;
}

.frameStage {
  margin-bottom: 100px;
}

.playFrame {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(233,185,73,0.56);
  border-radius: 8px;
  background: var(--ink-deepsea);
  box-shadow: var(--soft-shadow);
}

.playFrame iframe {
  display: block;
  width: 100%;
  height: 720px;
}

.policySheet {
  max-width: 880px;
  margin-bottom: 96px;
  padding: 44px;
}

.policySheet.revealShift,
.policySheet.revealShift.isAwake {
  opacity: 1;
  transform: none;
}

.policySheet h2 {
  margin-top: 34px;
  font-size: 32px;
}

.policySheet h2:first-child {
  margin-top: 0;
}

.policySheet ul {
  margin: 12px 0 20px;
  padding-left: 22px;
  color: var(--muted-slate);
}

.policySheet li {
  margin: 7px 0;
  padding-left: 4px;
}

.policySheet li::marker {
  color: var(--coral-glow);
}

.footerBeacon {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 42px;
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  color: rgba(240,246,250,0.84);
  background:
    linear-gradient(135deg, rgba(12,28,41,0.98), rgba(47,93,69,0.96)),
    var(--ink-deepsea);
}

.beaconAge {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--sun-glint);
  border-radius: 4px;
  color: var(--sun-glint);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.beaconNote {
  margin: 0 0 14px;
  max-width: 1040px;
  color: rgba(240,246,250,0.72);
  font-size: 15px;
}

.beaconLinks,
.carePanel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(240,246,250,0.14);
}

.beaconLinks a,
.carePanel a {
  color: var(--foam-white);
  font-weight: 600;
}

.beaconLinks a:hover,
.carePanel a:hover {
  color: var(--sun-glint);
  transform: translateY(-1px);
}

.carePanel {
  display: block;
}

.carePanel strong {
  color: var(--sun-glint);
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.carePanel p {
  max-width: 760px;
  color: rgba(240,246,250,0.72);
}

.carePanel a {
  display: inline-flex;
  margin: 0 16px 8px 0;
}

.beaconMail {
  margin-top: 18px;
  color: rgba(240,246,250,0.76);
}

.rightsLine {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(240,246,250,0.14);
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.ageCurtain {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12,28,41,0.74);
  backdrop-filter: blur(18px);
}

.ageCurtain.isShown {
  display: flex;
}

.ageCard {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(233,185,73,0.50);
  border-radius: 8px;
  color: var(--foam-white);
  background: linear-gradient(135deg, rgba(12,28,41,0.98), rgba(47,93,69,0.94));
  box-shadow: 0 28px 90px rgba(0,0,0,0.38);
  animation: chapterRise 420ms ease both;
}

.ageCard h2 {
  margin-top: 12px;
  font-size: 42px;
}

.ageCard p {
  color: rgba(240,246,250,0.76);
}

.cookieBar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 18px;
  width: min(520px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid var(--wave-line);
  border-radius: 8px;
  background: rgba(240,246,250,0.92);
  box-shadow: 0 18px 60px rgba(12,28,41,0.18);
  backdrop-filter: blur(16px);
}

.cookieBar.isShown {
  display: flex;
}

.cookieBar p {
  margin: 0;
  color: var(--muted-slate);
  font-size: 15px;
}

.cookieBar .surfButton {
  min-height: 42px;
  flex: 0 0 auto;
}

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

.revealShift.isAwake {
  opacity: 1;
  transform: translateY(0);
}

.exitScreen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.exitScreen h1 {
  font-size: clamp(42px, 8vw, 86px);
}

.exitScreen p {
  margin: 12px 0 0;
  color: var(--muted-slate);
}

@keyframes chapterRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 920px) {
  .coastHeader,
  .coveGrid,
  .gameRow,
  .gameDeckIntro,
  .contactDock,
  .questionPier {
    grid-template-columns: 1fr;
  }

  .coastHeader,
  .questionPier {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .deckCard {
    min-height: 480px;
  }

  .heroCrest {
    min-height: 620px;
    padding: 66px 34px;
  }

  .joinChannel,
  .gameRow,
  .gameDeck,
  .footerBeacon {
    padding: 34px;
  }

  .playFrame,
  .playFrame iframe {
    height: 620px;
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .coastHeader {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brandAnchor {
    font-size: 16px;
  }

  .navCurrent {
    width: 100%;
    justify-content: space-between;
  }

  .navCurrent a {
    padding: 8px 9px;
  }

  .heroCrest,
  .aboutCove,
  .benefitReef,
  .gameRow,
  .gameDeck,
  .questionPier,
  .contactDock,
  .policySheet,
  .frameStage,
  .pageCrest,
  .footerBeacon,
  .joinChannel {
    width: calc(100% - 20px);
  }

  .heroCrest {
    min-height: 590px;
    padding: 52px 22px;
    background-position: center;
  }

  .heroMist {
    inset: 10px;
  }

  .gaugeBoard,
  .reefList,
  .deckCards {
    grid-template-columns: 1fr;
  }

  .deckCard {
    min-height: 430px;
  }

  .deckCardText {
    padding: 24px;
  }

  .gaugeTile,
  .gaugeTile:nth-child(2n),
  .gaugeTile:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--wave-line);
  }

  .gaugeTile:last-child {
    border-bottom: 0;
  }

  .reefCard {
    min-height: auto;
  }

  .joinChannel,
  .gameRow,
  .gameDeck,
  .footerBeacon,
  .dockNote,
  .signalForm,
  .policySheet,
  .ageCard {
    padding: 24px;
  }

  .pageCrest {
    padding-top: 62px;
  }

  .questionPier {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .cookieBar {
    align-items: stretch;
    flex-direction: column;
  }

  .playFrame,
  .playFrame iframe {
    height: 560px;
    min-height: 560px;
  }
}
