/* Gebyar4d — Modern Wayfinding / Harbor Signal visual system. */
:root {
  --ink: #071c2e;
  --paper: #fffdf6;
  --yellow: #ffc928;
  --red: #e94b3c;
  --green: #1ea67a;
  --blue: #2070b8;
  --line: #c9d4d4;
  --muted: #5d6b78;
  --cream: #f4efe2;
  --shadow: 0 18px 45px rgba(7, 28, 46, 0.14);
  --display: "Space Grotesk", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.skip {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  color: var(--ink);
  background: var(--yellow);
  padding: 8px 12px;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.masthead {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1280px;
  margin: auto;
  padding: 13px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 205px;
  font-family: var(--display);
  line-height: 0.86;
}
.brand img {
  width: 46px;
  height: 46px;
}
.brand b {
  font-size: 25px;
  letter-spacing: -1.3px;
}
.brand i {
  font-style: normal;
  background: var(--yellow);
  padding: 2px 4px;
  margin-left: 2px;
  font-size: 21px;
}
.brand small {
  display: block;
  font: 800 8px var(--body);
  letter-spacing: 1.5px;
  margin-top: 6px;
  color: var(--muted);
}
.masthead nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  flex: 1;
  white-space: nowrap;
}
.masthead nav a {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 2px solid transparent;
  padding: 7px 0;
}
.masthead nav a:hover {
  border-color: var(--yellow);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 800;
}
.header-cta {
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  box-shadow: 4px 4px 0 var(--yellow);
}
.menu-toggle {
  display: none;
  background: var(--yellow);
  border: 0;
  padding: 9px 11px;
  font-size: 18px;
}
.signal-bar {
  background: var(--ink);
  color: #dce7eb;
  display: flex;
  gap: 23px;
  padding: 7px max(28px, calc((100vw - 1224px) / 2));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35px;
  white-space: nowrap;
  overflow: hidden;
}
.signal-bar span:first-child {
  color: var(--yellow);
  font-size: 11px;
}
.hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: grid;
  align-items: center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 28, 46, 0.97) 0%,
    rgba(7, 28, 46, 0.82) 39%,
    rgba(7, 28, 46, 0.21) 76%,
    rgba(7, 28, 46, 0.14)
  );
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 86px 28px;
}
.eyebrow,
.section-title > span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 800;
  color: var(--yellow);
  border-left: 4px solid var(--red);
  padding-left: 9px;
}
.hero h1 {
  font: 700 clamp(46px, 7.3vw, 92px) / 0.91 var(--display);
  max-width: 760px;
  letter-spacing: -4px;
  margin: 20px 0 21px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p {
  max-width: 610px;
  font-size: 17px;
  color: #d8e3e9;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
  flex-wrap: wrap;
}
.primary-btn,
.ghost-btn {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 14px 20px;
  display: inline-block;
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.primary-btn {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--red);
}
.primary-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--red);
}
.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.ghost-btn:hover {
  background: #fff;
  color: var(--ink);
}
.route {
  max-width: 1280px;
  margin: -1px auto 0;
  padding: 0 28px;
  height: 63px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
  font-size: 13px;
  font-weight: 800;
}
.route b {
  font: 800 34px var(--display);
}
.home-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 28px;
  position: relative;
}
.section-title {
  max-width: 700px;
  margin-bottom: 31px;
}
.section-title h2 {
  font: 700 clamp(29px, 4.1vw, 54px) / 1 var(--display);
  letter-spacing: -2px;
  margin: 13px 0;
}
.section-title p {
  color: var(--muted);
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.feature {
  padding: 25px 20px 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 0 0 transparent;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  min-height: 230px;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature b {
  font: 700 38px var(--display);
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--ink);
}
.feature h3 {
  font: 700 18px var(--display);
  margin: 25px 0 7px;
}
.feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}
.feature.red {
  border-top: 5px solid var(--red);
}
.feature.green {
  border-top: 5px solid var(--green);
}
.feature.blue {
  border-top: 5px solid var(--blue);
}
.feature.yellow {
  border-top: 5px solid var(--yellow);
}
.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(270px, 1fr);
  gap: 42px;
  align-items: start;
}
.signal-track {
  padding-left: 34px;
  position: relative;
}
.signal-track:before {
  content: "";
  position: absolute;
  left: 9px;
  top: 17px;
  bottom: 22px;
  border-left: 2px dashed var(--line);
}
.signal-track article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 27px 27px 21px;
  margin: 0 0 21px;
}
.signal-track article:before {
  content: "";
  width: 17px;
  height: 17px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  position: absolute;
  left: -35px;
  top: 27px;
}
.signal-track h3 {
  font: 700 24px var(--display);
  margin: 0 0 8px;
  letter-spacing: -0.7px;
}
.signal-track p {
  margin: 0;
  color: #4e5d69;
  font-size: 14px;
}
.signal-track a {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.aside-board {
  background: var(--ink);
  color: white;
  padding: 28px;
  position: sticky;
  top: 120px;
}
.aside-board h3 {
  font: 700 24px/1 var(--display);
  margin: 0 0 14px;
}
.aside-board p {
  font-size: 13px;
  color: #d5e0e4;
}
.aside-board a {
  display: block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 13px;
  margin-top: 12px;
}
.process-band {
  background: var(--cream);
  padding: 80px 0;
}
.process-grid {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1.8fr;
  gap: 45px;
}
.step-list {
  counter-reset: steps;
}
.step-list article {
  position: relative;
  padding: 20px 0 20px 72px;
  border-top: 1px solid var(--line);
}
.step-list article:before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  top: 16px;
  font: 700 32px var(--display);
  color: var(--red);
}
.step-list h3 {
  font: 700 19px var(--display);
  margin: 0;
}
.step-list p {
  font-size: 14px;
  color: var(--muted);
  margin: 5px 0 0;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.compare th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 16px;
}
.compare td {
  padding: 15px;
  border-bottom: 1px solid #dbe2e4;
  vertical-align: top;
}
.compare td:first-child {
  font-weight: 800;
}
.check {
  color: var(--green);
  font-size: 19px;
}
.x {
  color: var(--red);
  font-size: 19px;
}
.trust-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 84px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 55px;
}
.trust-panel {
  padding: 33px;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.trust-panel:after {
  content: "18+";
  position: absolute;
  right: -12px;
  bottom: -37px;
  color: rgba(255, 255, 255, 0.08);
  font: 800 145px var(--display);
}
.trust-panel h2 {
  font: 700 42px/1 var(--display);
  margin: 0 0 16px;
}
.trust-panel p {
  position: relative;
  z-index: 1;
  color: #d5e0e4;
}
.trust-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.trust-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}
.trust-list li:before {
  content: "✓";
  color: var(--yellow);
  position: absolute;
  left: 3px;
  font-weight: 900;
}
.payment-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 35px;
}
.payment-card h3 {
  font: 700 29px/1 var(--display);
  margin: 0 0 13px;
}
.payment-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 25px 0;
}
.payment-icons span {
  border: 1px dashed var(--line);
  font: 800 11px var(--display);
  text-align: center;
  padding: 14px 5px;
  color: var(--muted);
}
.payment-card p {
  font-size: 13px;
  color: var(--muted);
}
.promo-banner {
  background: linear-gradient(110deg, var(--red), #f15d34);
  color: #fff;
  margin: 0 auto;
  max-width: 1224px;
  padding: 31px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 9px 9px 0 var(--ink);
}
.promo-banner h3 {
  font: 700 31px/1 var(--display);
  margin: 0;
}
.promo-banner p {
  margin: 7px 0 0;
  font-size: 13px;
}
.promo-banner .primary-btn {
  box-shadow: 4px 4px 0 var(--ink);
  white-space: nowrap;
}
.faq-wrap {
  background: var(--paper);
  max-width: 960px;
  margin: auto;
  padding: 84px 28px;
}
.faq {
  border-top: 2px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font: 700 18px var(--display);
  list-style-position: outside;
  padding-right: 25px;
}
.faq details p {
  color: var(--muted);
  font-size: 14px;
  max-width: 800px;
}
.tag-cloud {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px 85px;
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
}
.tag-cloud span {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
  margin-right: 4px;
}
.tag-cloud a {
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: #fff;
}
.tag-cloud a:hover {
  background: var(--yellow);
  border-color: var(--ink);
}
.breadcrumbs {
  max-width: 1280px;
  margin: auto;
  padding: 23px 28px 0;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  margin: 0 7px;
  color: var(--red);
}
.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 28px 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: end;
}
.page-hero h1 {
  font: 700 clamp(39px, 6.4vw, 76px) / 0.94 var(--display);
  margin: 16px 0;
  letter-spacing: -3px;
}
.page-hero p {
  color: var(--muted);
  max-width: 680px;
}
.page-hero figure {
  margin: 0;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  border: 7px solid var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}
.page-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.page-hero figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent, rgba(7, 28, 46, 0.22));
}
.page-shell {
  max-width: 1280px;
  margin: auto;
  padding: 35px 28px 94px;
}
.game-tools {
  background: var(--cream);
  padding: 20px;
  margin-bottom: 31px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-field {
  flex: 1;
  border: 1px solid var(--ink);
  background: white;
  padding: 14px;
  font: 600 14px var(--body);
  min-width: 0;
}
.search-status {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.game-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.game-card .card-copy {
  padding: 20px;
}
.game-card small {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--red);
}
.game-card h2 {
  font: 700 25px/1.05 var(--display);
  margin: 10px 0;
}
.game-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.game-card a {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-shell {
  max-width: 940px;
  margin: auto;
  padding: 35px 28px 94px;
}
.article-hero {
  margin: 0 0 33px;
}
.article-hero img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border: 8px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
}
.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin: 17px 0;
}
.article-body {
  font-size: 17px;
  color: #2b3c49;
}
.article-body .lede {
  font-size: 21px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 600;
}
.article-body h2 {
  font: 700 33px/1.1 var(--display);
  letter-spacing: -1.25px;
  color: var(--ink);
  margin: 53px 0 17px;
  padding-left: 17px;
  border-left: 6px solid var(--yellow);
}
.article-body h3 {
  font: 700 23px/1.15 var(--display);
  color: var(--ink);
  margin: 34px 0 11px;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body strong {
  color: var(--ink);
}
.article-body blockquote {
  margin: 31px 0;
  padding: 22px 25px;
  background: var(--cream);
  border-left: 6px solid var(--red);
  font: 700 22px/1.35 var(--display);
  color: var(--ink);
}
.article-navigation {
  background: var(--ink);
  color: white;
  padding: 26px;
  margin: 47px 0 0;
}
.article-navigation h3 {
  font: 700 21px var(--display);
  margin: 0 0 12px;
}
.article-navigation a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.promo-card {
  background: white;
  border: 1px solid var(--line);
  padding: 27px;
  position: relative;
}
.promo-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 33px 33px 0;
  border-style: solid;
  border-color: transparent var(--yellow) transparent transparent;
}
.promo-card h2 {
  font: 700 32px/1 var(--display);
  letter-spacing: -1px;
  margin: 14px 0;
}
.promo-card p {
  font-size: 14px;
  color: var(--muted);
}
.terms-box {
  background: var(--cream);
  border-left: 6px solid var(--yellow);
  padding: 28px;
  margin: 36px 0;
}
.terms-box h3 {
  font: 700 24px var(--display);
  margin: 0 0 17px;
}
.terms-box dl {
  margin: 0;
}
.terms-box dt {
  font-weight: 800;
  margin-top: 15px;
}
.terms-box dd {
  margin: 4px 0;
  color: var(--muted);
  font-size: 14px;
}
.form-wrap {
  max-width: 560px;
  margin: 30px auto 100px;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-wrap h1 {
  font: 700 43px/1 var(--display);
  margin: 0 0 12px;
}
.form-wrap p {
  font-size: 14px;
  color: var(--muted);
}
.form-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin: 18px 0 7px;
}
.form-wrap input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: 500 15px var(--body);
}
.form-wrap button {
  width: 100%;
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  font: 800 14px var(--body);
  padding: 15px;
  margin-top: 24px;
  box-shadow: 5px 5px 0 var(--ink);
}
.form-wrap .fine {
  font-size: 11px;
  margin-top: 18px;
}
.form-wrap .fine a {
  text-decoration: underline;
}
.plain-page {
  max-width: 940px;
  margin: auto;
  padding: 43px 28px 95px;
}
.plain-page h1 {
  font: 700 clamp(38px, 6vw, 68px) / 0.95 var(--display);
  letter-spacing: -2.5px;
  margin: 10px 0 22px;
}
.plain-page h2 {
  font: 700 30px/1.15 var(--display);
  margin: 42px 0 14px;
}
.plain-page p,
.plain-page li {
  color: #455561;
}
.plain-page ul {
  padding-left: 22px;
}
.notice {
  padding: 18px 21px;
  background: #fff5c7;
  border-left: 5px solid var(--yellow);
  font-size: 14px;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 67px 28px 105px;
}
.footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand img {
  background: #fff;
  padding: 5px;
  margin-bottom: 12px;
}
.footer-brand h2 {
  font: 700 32px/1 var(--display);
  margin: 0;
}
.footer-brand p {
  font-size: 13px;
  max-width: 290px;
  color: #c7d3d8;
}
.telegram {
  display: inline-block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-grid h3 {
  font: 700 14px var(--display);
  color: var(--yellow);
  letter-spacing: 0.5px;
}
.footer-grid section:not(.footer-brand) a {
  display: block;
  color: #d7e2e5;
  font-size: 12px;
  margin: 10px 0;
}
.footer-grid section:not(.footer-brand) a:hover {
  color: var(--yellow);
}
.legal-note,
.copyright {
  max-width: 1280px;
  margin: 42px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 21px;
  font-size: 12px;
  color: #b9c9ce;
}
.legal-note strong {
  color: var(--yellow);
}
.copyright {
  margin-top: 20px;
  padding-top: 15px;
}
.copyright a {
  color: var(--yellow);
}
.dock {
  position: fixed;
  z-index: 35;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--ink);
  padding: 7px 10px 7px 13px;
  box-shadow: 0 -3px 22px rgba(7, 28, 46, 0.28);
  min-width: 324px;
  justify-content: center;
}
.dock:before,
.dock:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background: radial-gradient(
      circle at 7px 7px,
      var(--paper) 2.5px,
      transparent 3px
    )
    0 0/15px 15px;
}
.dock:before {
  left: -2px;
}
.dock:after {
  right: -2px;
}
.dock-label {
  color: #fff;
  font: 800 9px var(--body);
  letter-spacing: 1px;
  margin-right: 5px;
}
.dock a {
  background: var(--yellow);
  color: var(--ink);
  font: 800 12px var(--display);
  padding: 11px 16px;
  position: relative;
  z-index: 1;
}
.dock a + a {
  background: #fff;
}
.coin {
  position: absolute;
  color: var(--yellow);
  font-weight: 900;
  animation: float 3.2s ease-in-out infinite;
}
.c1 {
  top: -15px;
  left: 12px;
}
.c2 {
  top: -11px;
  right: 17px;
  font-size: 10px;
  animation-delay: 1s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(17deg);
  }
}
[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (max-width: 1040px) {
  .masthead nav {
    gap: 12px;
  }
  .masthead nav a {
    font-size: 11px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 18px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .masthead {
    padding: 10px 17px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .brand {
    min-width: auto;
    flex: 1;
  }
  .brand b {
    font-size: 22px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .menu-toggle {
    display: block;
  }
  .masthead nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 6px;
  }
  .masthead nav.open {
    display: flex;
  }
  .masthead nav a {
    padding: 10px 2px;
    font-size: 13px;
  }
  .header-actions {
    font-size: 11px;
    gap: 8px;
  }
  .header-cta {
    padding: 8px 10px;
  }
  .signal-bar {
    padding: 6px 17px;
    gap: 13px;
    font-size: 9px;
  }
  .signal-bar span:nth-child(3),
  .signal-bar span:nth-child(4) {
    display: none;
  }
  .hero {
    min-height: 520px;
  }
  .hero-inner {
    padding: 66px 20px 105px;
  }
  .hero h1 {
    letter-spacing: -2.5px;
  }
  .hero p {
    font-size: 15px;
  }
  .route {
    margin-top: -40px;
    height: auto;
    min-height: 62px;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
  }
  .home-grid,
  .page-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature-grid,
  .game-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .signal-layout,
  .process-grid,
  .trust-wrap,
  .page-hero {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .aside-board {
    position: static;
  }
  .process-band {
    padding: 61px 0;
  }
  .process-grid {
    padding: 0 20px;
  }
  .trust-wrap {
    padding: 61px 20px;
  }
  .promo-banner {
    margin: 0 20px;
    display: block;
    padding: 27px 22px;
  }
  .promo-banner .primary-btn {
    margin-top: 16px;
  }
  .faq-wrap {
    padding: 61px 20px;
  }
  .page-hero {
    padding: 30px 20px;
  }
  .page-hero h1 {
    letter-spacing: -2px;
  }
  .page-hero figure {
    min-height: 190px;
  }
  .page-hero figure img {
    min-height: 190px;
  }
  .game-tools {
    padding: 14px;
    display: block;
  }
  .search-field {
    width: 100%;
  }
  .search-status {
    display: block;
    margin-top: 10px;
  }
  .article-shell,
  .plain-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-body {
    font-size: 16px;
  }
  .article-body .lede {
    font-size: 18px;
  }
  .article-body h2 {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 23px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .site-footer {
    padding: 55px 20px 99px;
  }
  .legal-note {
    margin-top: 28px;
  }
  .dock {
    min-width: 0;
    width: calc(100% - 18px);
    padding: 7px;
    gap: 4px;
  }
  .dock-label {
    display: none;
  }
  .dock a {
    flex: 1;
    text-align: center;
    padding: 11px 6px;
  }
  .breadcrumbs {
    padding: 17px 20px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .compare {
    font-size: 11px;
  }
  .compare th,
  .compare td {
    padding: 10px 7px;
  }
}
/* Route-system reinforcement: docks, checkpoints, and semantic signal colors. */
.brand b {
  letter-spacing: -2px;
  position: relative;
}
.brand i {
  clip-path: polygon(0 0, 100% 0, 89% 50%, 100% 100%, 0 100%, 11% 50%);
  padding: 4px 8px;
  margin-left: 4px;
  letter-spacing: -1px;
}
.brand small {
  letter-spacing: 1.8px;
}
.breadcrumbs {
  position: relative;
  padding-left: 45px;
}
.breadcrumbs:before {
  content: "";
  position: absolute;
  left: 28px;
  top: 13px;
  height: 18px;
  border-left: 2px dashed var(--blue);
}
.breadcrumbs:after {
  content: "";
  position: absolute;
  left: 22px;
  top: 30px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--paper);
}
.article-body {
  position: relative;
  padding-left: 68px;
  counter-reset: checkpoint;
}
.article-body:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 42px;
  left: 19px;
  border-left: 2px dashed var(--blue);
}
.article-body h2 {
  position: relative;
  margin-left: -68px;
  padding: 16px 17px 16px 68px;
  border-left: 0;
  background: linear-gradient(90deg, #f4efe2 0%, #fffdf6 76%);
}
.article-body h2:before {
  counter-increment: checkpoint;
  content: "CHECKPOINT " counter(checkpoint, decimal-leading-zero);
  display: block;
  color: var(--blue);
  font: 800 10px var(--body);
  letter-spacing: 1.3px;
  margin-bottom: 5px;
}
.article-body h2:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 5px var(--paper);
}
.article-body blockquote {
  border-color: var(--red);
  position: relative;
}
.article-navigation {
  border-left: 7px solid var(--green);
}
.promo-grid {
  position: relative;
  display: block;
  padding: 0 0 10px;
}
.promo-grid:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px dashed var(--blue);
}
.promo-card {
  width: calc(50% - 38px);
  margin: 0 0 33px;
  z-index: 1;
}
.promo-card:nth-child(even) {
  margin-left: calc(50% + 38px);
}
.promo-card:after {
  content: "";
  position: absolute;
  top: 32px;
  width: 70px;
  border-top: 2px dashed var(--blue);
}
.promo-card:nth-child(odd):after {
  left: 100%;
}
.promo-card:nth-child(even):after {
  right: 100%;
}
.promo-card small {
  color: var(--blue);
  font-weight: 800;
}
.terms-box {
  border-left-color: var(--green);
}
.terms-box h3:before {
  content: "✓ ";
  color: var(--green);
}
.notice {
  border-left-color: var(--red);
  background: #fff0ec;
}
.notice strong {
  color: #a6362b;
}
@media (max-width: 760px) {
  .breadcrumbs {
    padding-left: 37px;
  }
  .breadcrumbs:before {
    left: 19px;
  }
  .breadcrumbs:after {
    left: 13px;
  }
  .article-body {
    padding-left: 46px;
  }
  .article-body h2 {
    margin-left: -46px;
    padding-left: 46px;
  }
  .article-body h2:after {
    left: 9px;
    width: 15px;
    height: 15px;
  }
  .article-body:before {
    left: 16px;
  }
  .promo-grid:before {
    left: 17px;
  }
  .promo-card,
  .promo-card:nth-child(even) {
    width: auto;
    margin: 0 0 21px 39px;
  }
  .promo-card:after {
    left: -39px !important;
    right: auto !important;
    width: 39px;
  }
}

/* Slot lounge enhancement: rounded tickets, visible reels, and controlled coin accents. */
.primary-btn,
.ghost-btn,
.header-cta,
.aside-board a,
.form-wrap button,
.dock a {
  border-radius: 14px;
}
.primary-btn,
.form-wrap button {
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}
.primary-btn:hover {
  box-shadow: 6px 6px 0 var(--red);
}
.ghost-btn {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.header-cta {
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--yellow);
}
.hero-inner:after {
  content: "7  ·  BAR  ·  ◆";
  position: absolute;
  right: 50px;
  bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  padding: 13px 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(7, 28, 46, 0.54);
  box-shadow: 8px 8px 0 rgba(255, 201, 40, 0.72);
  font: 700 17px var(--display);
  letter-spacing: 3px;
  color: var(--yellow);
  transform: rotate(-4deg);
}
.hero-inner:before {
  content: "SLOT / INFO / 18+";
  position: absolute;
  right: 53px;
  bottom: 18px;
  color: #dce7eb;
  font: 800 9px var(--body);
  letter-spacing: 2px;
}
.feature,
.game-card,
.payment-card,
.terms-box,
.form-wrap,
.promo-card,
.article-navigation,
.article-signal,
.trust-panel,
.aside-board,
.page-hero figure,
.article-hero img,
.faq {
  border-radius: 20px;
}
.feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 80%, #f7f2e6 100%);
}
.feature:after {
  content: "7  BAR  ◆";
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf6;
  color: var(--blue);
  font: 800 8px var(--display);
  letter-spacing: 1px;
  opacity: 0.82;
}
.feature:hover:after {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
}
.feature b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--ink);
  font-size: 27px;
  text-shadow: none;
  box-shadow: 3px 3px 0 var(--yellow);
}
.game-card {
  border-radius: 22px;
}
.game-card .card-copy {
  position: relative;
}
.game-card .card-copy:after {
  content: "◆";
  position: absolute;
  right: 18px;
  top: 17px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  box-shadow: 2px 2px 0 var(--ink);
}
.game-card img {
  border-radius: 20px 20px 0 0;
}
.signal-track article,
.step-list article {
  border-radius: 18px;
}
.signal-track article:before {
  box-shadow: 0 0 0 5px var(--paper);
}
.payment-icons span {
  border-radius: 12px;
  background: #fffdf6;
}
.promo-banner {
  border-radius: 24px;
}
.promo-card {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(7, 28, 46, 0.08);
}
.promo-card:before {
  border-top-right-radius: 18px;
}
.terms-box {
  box-shadow: inset 0 0 0 1px rgba(30, 166, 122, 0.15);
}
.faq {
  overflow: hidden;
  border-radius: 18px;
}
.faq details {
  padding-left: 18px;
  padding-right: 18px;
}
.tag-cloud a {
  border-radius: 999px;
  transition:
    transform 0.16s,
    background 0.16s;
}
.tag-cloud a:hover {
  transform: translateY(-2px);
}
.dock {
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
}
.dock a {
  min-width: 93px;
  text-align: center;
}
.dock:before,
.dock:after {
  opacity: 0.65;
}
.coin {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 2px rgba(255, 201, 40, 0.2);
}
@media (max-width: 760px) {
  .hero-inner:after {
    right: 20px;
    bottom: 42px;
    min-width: 154px;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 1.6px;
    box-shadow: 5px 5px 0 rgba(255, 201, 40, 0.72);
  }
  .hero-inner:before {
    right: 23px;
    bottom: 19px;
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  .feature,
  .game-card,
  .payment-card,
  .terms-box,
  .form-wrap,
  .promo-card,
  .article-navigation,
  .article-signal,
  .trust-panel,
  .aside-board,
  .page-hero figure,
  .article-hero img,
  .faq {
    border-radius: 16px;
  }
  .feature:after {
    right: 10px;
    bottom: 9px;
  }
  .dock {
    border-radius: 18px 18px 0 0;
  }
  .dock a {
    min-width: 0;
  }
  .primary-btn,
  .ghost-btn,
  .header-cta,
  .aside-board a,
  .form-wrap button,
  .dock a {
    border-radius: 12px;
  }
}

/* Category dock route: each game category is a numbered harbor signal board, not a generic grid card. */
.game-tools {
  border-radius: 20px;
  border: 1px solid #e3ddcf;
}
.search-field {
  border-radius: 14px;
}
.game-grid {
  display: block;
  max-width: 1060px;
  margin: 0 auto;
  padding: 15px 0 26px;
  position: relative;
  counter-reset: game-dock;
}
.game-grid:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px dashed var(--blue);
}
.game-card {
  counter-increment: game-dock;
  position: relative;
  width: calc(50% - 48px);
  margin: 0 0 42px;
  overflow: visible;
  border: 2px solid #d8e2e4;
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(7, 28, 46, 0.09);
}
.game-card:nth-child(even) {
  margin-left: calc(50% + 48px);
}
.game-card:before {
  content: "DOCK " counter(game-dock, decimal-leading-zero);
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: 800 9px var(--body);
  letter-spacing: 1.1px;
  box-shadow: 2px 2px 0 var(--paper);
}
.game-card:after {
  content: "";
  position: absolute;
  top: 53px;
  width: 48px;
  border-top: 2px dashed var(--blue);
}
.game-card:nth-child(odd):after {
  left: 100%;
}
.game-card:nth-child(even):after {
  right: 100%;
}
.game-card img {
  border-bottom: 4px solid var(--blue);
}
.game-card .card-copy {
  padding: 22px 22px 24px;
}
.game-card .card-copy:before {
  content: "7 · BAR · ◆";
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: #f0f7fb;
  border: 1px solid #c9deee;
  color: var(--blue);
  font: 800 8px var(--display);
  letter-spacing: 1px;
}
.game-card h2 {
  max-width: 85%;
}
.game-card:nth-child(3n + 2) img {
  border-bottom-color: var(--green);
}
.game-card:nth-child(3n + 2) .card-copy:before {
  background: #edf9f4;
  border-color: #c3e9d7;
  color: #117457;
}
.game-card:nth-child(3n) img {
  border-bottom-color: var(--red);
}
.game-card:nth-child(3n) .card-copy:before {
  background: #fff1ee;
  border-color: #f4c9c2;
  color: #b83d31;
}
.game-card:nth-child(5n) img {
  border-bottom-color: var(--yellow);
}
.game-card:nth-child(5n) .card-copy:before {
  background: #fff9df;
  border-color: #f1d66f;
  color: #806000;
}
.game-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 0 18px 36px rgba(7, 28, 46, 0.16);
}
@media (max-width: 760px) {
  .game-grid {
    padding-left: 39px;
  }
  .game-grid:before {
    left: 17px;
  }
  .game-card,
  .game-card:nth-child(even) {
    width: auto;
    margin: 0 0 22px 0;
  }
  .game-card:after {
    left: -39px !important;
    right: auto !important;
    width: 39px;
  }
  .game-card:before {
    top: 14px;
    left: 14px;
  }
  .game-card .card-copy {
    padding: 18px;
  }
  .game-card h2 {
    max-width: 82%;
  }
}
