:root {
  color-scheme: light;
  --navy-950: #071936;
  --navy-900: #102a5c;
  --navy-800: #193b78;
  --navy-700: #244d93;
  --cream: #fffdf7;
  --paper: #ffffff;
  --ink: #15213b;
  --muted: #5f6d86;
  --pink: #ff6fae;
  --yellow: #ffd84d;
  --mint: #58d6c9;
  --coral: #ff7a59;
  --line: rgba(16, 42, 92, 0.13);
  --shadow: 0 22px 56px rgba(7, 25, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 216, 77, 0.18), transparent 26rem),
    radial-gradient(circle at 95% 12%, rgba(255, 111, 174, 0.16), transparent 22rem),
    var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(16, 42, 92, 0.96);
  box-shadow: 0 14px 32px rgba(7, 25, 54, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(170px, 20vw, 250px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 82px);
  padding: clamp(42px, 8vw, 92px) 20px;
  background:
    linear-gradient(135deg, rgba(16, 42, 92, 0.98), rgba(25, 59, 120, 0.96)),
    var(--navy-900);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.6px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100%, 1000px);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: clamp(1.3rem, 4vw, 2.6rem);
  font-weight: 950;
  line-height: 1.35;
}

.hero-kicker::before,
.hero-kicker::after {
  color: #fff;
  content: "＼";
  margin: 0 0.25em;
}

.hero-kicker::after {
  content: "／";
}

.hero-logo {
  width: min(100%, 760px);
  padding: clamp(18px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-copy {
  width: min(100%, 620px);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
}

.hero-actions,
.event-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 25, 54, 0.16);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 25, 54, 0.22);
}

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.secondary {
  background: var(--yellow);
  color: var(--navy-950);
}

.shape {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  font-weight: 950;
  pointer-events: none;
}

.dice-one,
.dice-two {
  width: clamp(54px, 9vw, 98px);
  aspect-ratio: 1;
  border-radius: 22px;
  background: var(--yellow);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-13deg);
}

.dice-one {
  top: 18%;
  left: 7%;
}

.dice-two {
  right: 8%;
  bottom: 20%;
  background: var(--pink);
  transform: rotate(12deg);
}

.card-one,
.card-two {
  width: clamp(72px, 12vw, 130px);
  height: clamp(96px, 16vw, 170px);
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: rgba(88, 214, 201, 0.35);
  transform: rotate(16deg);
}

.card-one {
  right: 17%;
  top: 16%;
}

.card-two {
  bottom: 14%;
  left: 12%;
  background: rgba(255, 111, 174, 0.32);
  transform: rotate(-18deg);
}

.token-one,
.token-two {
  width: clamp(28px, 6vw, 56px);
  aspect-ratio: 1;
  border-radius: 999px;
}

.token-one {
  top: 30%;
  right: 5%;
  background: var(--mint);
}

.token-two {
  bottom: 24%;
  left: 5%;
  background: var(--coral);
}

.section {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0;
}

.section-title {
  margin: 0 auto clamp(26px, 5vw, 44px);
  text-align: center;
}

.section-title p {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
}

.section-title h2::after {
  position: absolute;
  z-index: -1;
  right: -12px;
  bottom: 4px;
  left: -12px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 111, 174, 0.32);
  content: "";
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.game-card {
  overflow: hidden;
  border: 3px solid var(--navy-900);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:hover,
.game-card:focus-within {
  transform: translate(-3px, -5px) rotate(-1deg);
  box-shadow: 14px 16px 0 var(--pink);
}

.game-card.featured {
  grid-column: span 2;
}

.game-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3f0e7;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.game-card:hover img,
.game-card:focus-within img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.game-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.game-body h2,
.game-body h3,
.notice-card h3,
.event-card h3,
.member-card h3,
.contact-panel h2 {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.35;
}

.game-body h2,
.game-body h3 {
  font-size: clamp(1.12rem, 2vw, 1.5rem);
}

.game-body p,
.notice-card p,
.event-card p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.game-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(88, 214, 201, 0.24);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 950;
}

.split-section {
  width: 100%;
  max-width: none;
  padding-right: clamp(16px, 5vw, 48px);
  padding-left: clamp(16px, 5vw, 48px);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 216, 77, 0.18), transparent 20rem),
    var(--navy-900);
}

.split-section .section-title h2,
.split-section .section-title p {
  color: #fff;
}

.split-section .section-title p {
  background: rgba(255, 255, 255, 0.14);
}

.notice-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.notice-card,
.event-card,
.contact-panel {
  border: 3px solid var(--navy-900);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice-card {
  padding: clamp(20px, 4vw, 32px);
}

.notice-card time,
.event-card time {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 950;
}

.notice-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.1em;
  color: var(--navy-900);
  font-weight: 850;
}

.notice-card a {
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 111, 174, 0.55);
  text-underline-offset: 4px;
}

.stamp-card img {
  width: min(100%, 520px);
  margin-top: 16px;
  border-radius: 22px;
  border: 3px solid rgba(25, 59, 120, 0.18);
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.event-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  padding: clamp(18px, 4vw, 32px);
}

.event-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.event-card h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.event-image {
  overflow: hidden;
  border-radius: 22px;
  background: #eef1f8;
}

.event-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.members-section {
  width: min(100% - 32px, 980px);
}

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

.member-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 3px solid var(--navy-900);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 216, 77, 0.55) 0 32%, transparent 33%),
    var(--paper);
  box-shadow: 8px 8px 0 var(--mint);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.member-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--pink);
}

.member-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--coral);
}

.member-card:hover,
.member-card:focus-visible {
  transform: translateY(-5px);
}

.member-card img {
  width: min(76%, 210px);
  aspect-ratio: 1;
  border: 4px solid var(--navy-900);
  border-radius: 999px;
  background: #fff;
  object-fit: cover;
}

.contact-section {
  padding-top: 20px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 44px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 216, 77, 0.55), transparent 10rem),
    linear-gradient(135deg, #fff, #f7fbff);
}

.contact-kicker {
  color: var(--pink) !important;
  font-size: 0.92rem;
  font-weight: 950 !important;
  letter-spacing: 0.04em;
}

.contact-panel h2 {
  max-width: 680px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 36px 18px;
  background: var(--navy-900);
  color: #fff;
  text-align: center;
}

.site-footer img {
  width: 210px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 9vw, 96px) 20px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 216, 77, 0.24), transparent 16rem),
    radial-gradient(circle at 86% 20%, rgba(255, 111, 174, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  text-align: center;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.6px);
  background-size: 26px 26px;
  content: "";
  opacity: 0.48;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero p {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 950;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: 0.95;
}

.page-token {
  position: absolute;
  right: clamp(18px, 10vw, 130px);
  bottom: clamp(12px, 4vw, 44px);
  display: grid;
  place-items: center;
  width: clamp(62px, 10vw, 104px);
  aspect-ratio: 1;
  border-radius: 22px;
  background: var(--pink);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.14);
  color: var(--navy-950);
  font-weight: 950;
  transform: rotate(10deg);
}

.page-section {
  width: min(100% - 32px, 1080px);
}

.timeline,
.event-list,
.profile-grid {
  display: grid;
  gap: 24px;
}

.event-group-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  text-align: center;
}

.event-group-heading.past-heading {
  margin-top: clamp(42px, 8vw, 78px);
}

.event-group-heading p {
  justify-self: center;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 15px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 rgba(6, 26, 61, 0.16);
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.event-group-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.timeline-card,
.profile-card,
.detail-card,
.info-card,
.media-section {
  border: 3px solid var(--navy-900);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 10px 10px 0 rgba(255, 216, 77, 0.75);
}

.timeline-card {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 32px);
}

.timeline-card time,
.event-label,
.product-kicker {
  justify-self: start;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
}

.timeline-card h2,
.profile-card h2,
.detail-card h2,
.info-card h2,
.media-section h2 {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.35;
}

.timeline-card p,
.profile-card p,
.detail-card p,
.info-card li {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.timeline-card ul,
.info-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.timeline-card a,
.link-stack a,
.profile-links a,
.back-link {
  color: var(--navy-900);
  font-weight: 950;
  text-decoration-color: rgba(255, 111, 174, 0.55);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.timeline-card img,
.media-link img {
  width: min(100%, 720px);
  border-radius: 20px;
  border: 2px solid var(--line);
}

.page-event-card {
  grid-template-columns: 1fr 1fr;
}

.page-event-card > img {
  width: 100%;
  min-height: 260px;
  border-radius: 22px;
  object-fit: cover;
}

.event-label {
  margin: 0;
  background: var(--yellow);
  color: var(--navy-950);
}

.link-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.event-info-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.event-info-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 2px solid rgba(6, 26, 61, 0.14);
  border-radius: 14px;
  background: rgba(55, 223, 208, 0.12);
}

.event-info-list dt,
.event-info-list dd {
  margin: 0;
}

.event-info-list dt {
  color: var(--navy-900);
  font-weight: 950;
}

.event-info-list dd {
  color: var(--muted);
  font-weight: 800;
}

.event-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 320px;
  border: 4px solid var(--navy-950);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 224, 79, 0.75), transparent 8rem),
    radial-gradient(circle at 85% 18%, rgba(255, 79, 154, 0.5), transparent 9rem),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: 7px 7px 0 rgba(6, 26, 61, 0.2);
  color: #fff;
  text-align: center;
}

.event-placeholder span {
  padding: 4px 12px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 950;
}

.event-placeholder strong {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(255, 79, 154, 0.45);
}

.event-placeholder small {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.profile-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1;
  border: 4px solid var(--navy-900);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 77, 0.48), transparent 50%),
    #fff;
  object-fit: cover;
}

.profile-card div {
  display: grid;
  gap: 10px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(88, 214, 201, 0.22);
  text-decoration: none;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(32px, 7vw, 76px) clamp(16px, 5vw, 54px);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 216, 77, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
}

.product-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 1.05;
}

.product-hero p:not(.product-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 750;
}

.product-hero .hero-actions {
  justify-content: flex-start;
}

.hero-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.hero-info-list div {
  display: grid;
  gap: 3px;
  min-width: 128px;
  padding: 10px 12px;
  border: 3px solid var(--navy-950);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-950);
  box-shadow: 4px 4px 0 var(--mint);
}

.hero-info-list dt,
.hero-info-list dd {
  margin: 0;
}

.hero-info-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
}

.hero-info-list dd {
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.35;
}

.product-hero img {
  width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.detail-card,
.info-card,
.media-section {
  padding: clamp(20px, 4vw, 32px);
}

.detail-card {
  display: grid;
  gap: 12px;
}

.detail-card:only-child {
  grid-column: 1 / -1;
}

.game-overview-card {
  display: grid;
  gap: clamp(24px, 5vw, 44px);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.info-card {
  align-self: start;
  box-shadow: 10px 10px 0 rgba(88, 214, 201, 0.72);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.detail-gallery.single {
  grid-template-columns: minmax(0, 1fr);
}

.detail-gallery img {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 18px;
  border: 3px solid var(--navy-900);
  border-radius: 22px;
  background: var(--navy-950);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 24px);
  padding-top: 0;
}

.pager-button {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: clamp(18px, 4vw, 28px);
  border: 4px solid var(--navy-950);
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 224, 79, 0.32), transparent 9rem),
    #fff;
  box-shadow: 8px 8px 0 var(--navy-950);
  color: var(--navy-900);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pager-button:hover,
.pager-button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--mint);
}

.pager-button.next {
  text-align: right;
}

.pager-button span {
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 950;
}

.pager-button.previous span::before {
  content: "← ";
}

.pager-button.next span::after {
  content: " →";
}

.pager-button strong {
  font-size: clamp(1.18rem, 3vw, 1.75rem);
  line-height: 1.25;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border-radius: 0 0 22px 22px;
    background: rgba(7, 25, 54, 0.98);
    box-shadow: 0 18px 42px rgba(7, 25, 54, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-contact {
    border: 0;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand img {
    width: 158px;
  }

  .hero {
    min-height: auto;
    padding: 38px 16px 54px;
  }

  .hero-logo {
    border-radius: 22px;
    padding: 14px;
  }

  .hero-actions,
  .event-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .shape {
    opacity: 0.55;
  }

  .card-one,
  .card-two {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 52px 0;
  }

  .split-section {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .game-grid,
  .notice-board,
  .event-card,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .game-card.featured {
    grid-column: auto;
  }

  .game-card,
  .notice-card,
  .event-card,
  .contact-panel {
    border-width: 2px;
    border-radius: 20px;
  }

  .game-card {
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .game-card:hover,
  .game-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 8px 9px 0 var(--pink);
  }

  .image-wrap {
    aspect-ratio: 16 / 11;
  }

  .event-image img {
    min-height: 190px;
  }

  .page-token {
    opacity: 0.35;
  }

  .page-event-card,
  .profile-card,
  .product-hero,
  .detail-layout,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .profile-card {
    text-align: center;
  }

  .profile-card img {
    width: min(70%, 220px);
    justify-self: center;
  }

  .product-hero {
    padding-top: 34px;
  }

  .event-info-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .event-placeholder {
    min-height: 220px;
  }

  .game-pager {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

  .pager-button,
  .pager-button.next {
    min-height: auto;
    text-align: left;
  }

  .member-card {
    box-shadow: 6px 6px 0 var(--mint);
  }

  .member-card img {
    width: min(66%, 190px);
  }

  .contact-panel {
    display: grid;
  }
}

@media (max-width: 420px) {
  body {
    line-height: 1.7;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    margin: 0 0.12em;
  }

  .game-body,
  .notice-card,
  .event-card,
  .contact-panel {
    padding: 16px;
  }
}

/* Test3 alternate: pop booth style */
:root {
  --navy-950: #061a3d;
  --navy-900: #0b2a66;
  --navy-800: #164aa2;
  --navy-700: #2468d8;
  --cream: #fff8e8;
  --paper: #ffffff;
  --ink: #10224a;
  --muted: #526384;
  --pink: #ff4f9a;
  --yellow: #ffe04f;
  --mint: #37dfd0;
  --coral: #ff7357;
  --shadow: 0 18px 0 rgba(6, 26, 61, 0.16), 0 28px 60px rgba(6, 26, 61, 0.14);
}

body {
  background:
    linear-gradient(90deg, rgba(11, 42, 102, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(11, 42, 102, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 8% 12%, rgba(55, 223, 208, 0.22), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(255, 79, 154, 0.2), transparent 22rem),
    var(--cream);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.site-header {
  min-height: 74px;
  border-bottom: 4px solid var(--mint);
  background: rgba(6, 26, 61, 0.96);
  box-shadow: 0 10px 0 rgba(255, 224, 79, 0.3);
}

.brand img {
  width: clamp(158px, 18vw, 232px);
}

.site-nav a:not(.nav-contact) {
  padding: 8px 0;
}

.nav-contact,
.button {
  border: 3px solid var(--navy-950);
}

.hero,
.page-hero,
.product-hero {
  background:
    linear-gradient(135deg, rgba(6, 26, 61, 0.94), rgba(22, 74, 162, 0.92)),
    radial-gradient(circle at 12% 20%, rgba(255, 224, 79, 0.25), transparent 16rem),
    var(--navy-900);
}

.hero::before,
.page-hero::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
}

.hero-logo {
  border: 5px solid var(--navy-950);
  border-radius: 18px;
  box-shadow: 14px 14px 0 var(--mint);
  transform: rotate(-1deg);
}

.hero-logo-card {
  overflow: hidden;
  width: min(100%, 760px);
  padding: clamp(12px, 2.4vw, 24px);
  border: 5px solid var(--navy-950);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 14px 14px 0 var(--mint);
  transform: rotate(-1deg);
}

.hero-logo-mark {
  display: block;
  width: 100%;
  height: auto;
}

.hero-kicker,
.page-hero h1,
.product-hero h1 {
  text-shadow: 4px 4px 0 rgba(255, 79, 154, 0.42);
}

.button.primary {
  background: var(--pink);
}

.button.secondary {
  background: var(--mint);
}

.section-title p,
.page-hero p,
.event-label {
  border: 3px solid var(--navy-950);
  box-shadow: 5px 5px 0 rgba(6, 26, 61, 0.16);
}

.section-title h2::after {
  height: 26px;
  background: var(--mint);
  opacity: 0.75;
}

.game-card,
.timeline-card,
.notice-card,
.event-card,
.contact-panel,
.profile-card,
.detail-card,
.info-card,
.media-section {
  border: 4px solid var(--navy-950);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--navy-950);
}

.game-card:nth-child(2n),
.timeline-card:nth-child(2n),
.profile-card:nth-child(2n) {
  box-shadow: 9px 9px 0 var(--pink);
}

.game-card:nth-child(3n),
.timeline-card:nth-child(3n),
.profile-card:nth-child(3n) {
  box-shadow: 9px 9px 0 var(--mint);
}

.game-card:hover,
.game-card:focus-within {
  transform: translate(-4px, -4px);
  box-shadow: 13px 13px 0 var(--yellow);
}

.image-wrap {
  border-bottom: 4px solid var(--navy-950);
}

.game-body,
.timeline-card,
.detail-card,
.info-card {
  background:
    linear-gradient(180deg, rgba(255, 224, 79, 0.11), transparent 130px),
    #fff;
}

.detail-card.game-overview-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.game-tags span,
.profile-links a {
  border: 2px solid var(--navy-950);
  background: var(--yellow);
  color: var(--navy-950);
}

.split-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    var(--navy-950);
  background-size: 38px 38px;
}

.page-token,
.dice-one,
.dice-two {
  border: 4px solid var(--navy-950);
  border-radius: 18px;
}

.product-hero img,
.detail-gallery img,
.timeline-card img,
.page-event-card > img,
.stamp-card img {
  border: 4px solid var(--navy-950);
  border-radius: 16px;
  box-shadow: 7px 7px 0 rgba(6, 26, 61, 0.2);
}

.product-kicker,
.timeline-card time {
  border: 3px solid var(--navy-950);
  background: var(--pink);
  color: #fff;
}

.back-link {
  color: var(--yellow);
  text-decoration-color: var(--mint);
}

.site-footer {
  border-top: 4px solid var(--mint);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--navy-950);
  background-size: 32px 32px;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    border: 3px solid var(--mint);
    background: rgba(6, 26, 61, 0.98);
  }

  .hero-logo,
  .hero-logo-card,
  .game-card,
  .timeline-card,
  .notice-card,
  .event-card,
  .contact-panel,
  .profile-card,
  .detail-card,
  .info-card,
  .media-section {
    box-shadow: 6px 6px 0 var(--navy-950);
  }
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--mint), var(--pink));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

.page-top-button {
  position: fixed;
  z-index: 70;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 76px);
  aspect-ratio: 1;
  border: 4px solid var(--navy-950);
  border-radius: 22px;
  background: var(--yellow);
  color: var(--navy-950);
  box-shadow: 7px 7px 0 var(--mint);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.88) rotate(3deg);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease, background 180ms ease;
}

.page-top-button span {
  display: block;
  margin-top: -2px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 950;
  line-height: 0.9;
}

.page-top-button strong {
  font-size: clamp(0.72rem, 1.7vw, 0.86rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.page-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1) rotate(3deg);
}

.page-top-button:hover,
.page-top-button:focus-visible {
  background: var(--pink);
  color: #fff;
  box-shadow: 10px 10px 0 var(--mint);
  outline: none;
  transform: translate(-2px, -4px) scale(1.03) rotate(-2deg);
}

.site-header {
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(6, 26, 61, 0.9);
  box-shadow: 0 8px 30px rgba(6, 26, 61, 0.2);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 74px);
}

.hero-inner {
  transform: translateY(-1vh);
}

.hero-copy {
  max-width: 680px;
}

.hero-countdown {
  display: none;
}

.countdown-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(16px, 4vw, 34px);
  align-items: center;
  width: min(100% - 32px, 1120px);
  margin: clamp(-34px, -4vw, -18px) auto 0;
  padding: clamp(18px, 4vw, 30px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 224, 79, 0.32), transparent 11rem),
    radial-gradient(circle at 92% 0%, rgba(255, 79, 154, 0.2), transparent 11rem),
    #fff;
  box-shadow: 12px 12px 0 var(--mint);
}

.countdown-strip::before,
.countdown-strip::after {
  position: absolute;
  top: 50%;
  width: 28px;
  aspect-ratio: 1;
  border: 4px solid var(--navy-950);
  border-radius: 999px;
  background: var(--cream);
  content: "";
  transform: translateY(-50%);
}

.countdown-strip::before {
  left: -18px;
}

.countdown-strip::after {
  right: -18px;
}

.countdown-copy {
  display: grid;
  gap: 6px;
}

.countdown-label {
  justify-self: start;
  display: inline-flex;
  margin: 0;
  padding: 5px 13px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 950;
  line-height: 1;
}

.countdown-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.24;
}

.countdown-copy p:not(.countdown-label) {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.countdown-card {
  display: grid;
  justify-items: center;
  min-width: clamp(116px, 13vw, 160px);
  padding: 13px 18px;
  border: 4px solid var(--navy-950);
  border-radius: 20px;
  background: var(--pink);
  color: #fff;
  box-shadow: 7px 7px 0 rgba(6, 26, 61, 0.18);
  line-height: 1;
  transform: rotate(2deg);
}

.countdown-card span,
.countdown-card small {
  font-weight: 950;
}

.countdown-card strong {
  margin: 4px 0;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  text-shadow: 4px 4px 0 rgba(6, 26, 61, 0.28);
}

.countdown-link {
  white-space: nowrap;
}

.freeplay-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border: 4px solid var(--navy-950);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 224, 79, 0.18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(52, 211, 199, 0.28), transparent 11rem),
    #fff;
  box-shadow: 14px 14px 0 var(--pink);
}

.freeplay-card::before {
  position: absolute;
  top: 28px;
  right: clamp(22px, 5vw, 52px);
  width: clamp(72px, 12vw, 126px);
  aspect-ratio: 1;
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: var(--yellow);
  color: var(--navy-950);
  content: "FREE";
  display: grid;
  place-items: center;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 950;
  transform: rotate(8deg);
}

.freeplay-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 16px;
}

.freeplay-label {
  display: inline-flex;
  padding: 7px 14px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.freeplay-copy h3 {
  max-width: 700px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.18;
}

.freeplay-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 850;
  line-height: 1.9;
}

.freeplay-image {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--mint);
  transform: rotate(2deg);
}

.freeplay-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.freeplay-image:hover img,
.freeplay-image:focus-visible img {
  transform: scale(1.04);
}

.game-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.game-step-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 190px;
  padding: clamp(18px, 3vw, 26px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--mint), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-step-card:nth-child(2) {
  box-shadow: 0 7px 0 var(--yellow), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-step-card:nth-child(3) {
  box-shadow: 0 7px 0 var(--pink), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-step-card span {
  padding: 5px 11px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.game-step-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.game-step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.75;
}

.how-to-play {
  display: grid;
  gap: 18px;
}

.how-to-label {
  justify-self: center;
  margin: 0;
  padding: 7px 16px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.how-to-play h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  text-align: center;
}

.how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 24px);
  align-items: stretch;
}

.how-to-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(178px, auto) auto;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 4vw, 30px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--coral), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.how-to-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  color: var(--coral);
  content: "→";
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
}

.how-to-card span {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 950;
  transform: translateX(-50%);
}

.how-to-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 10px;
  text-align: center;
}

.how-to-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.how-to-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.75;
}

.how-to-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: start;
  border: 3px solid var(--navy-950);
  border-radius: 18px;
  background: #fff;
  object-fit: cover;
}

.feature-section {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  text-align: center;
}

.feature-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.feature-heading p {
  margin: 0;
  padding: 7px 18px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
}

.feature-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
}

.feature-heading span {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  font-weight: 850;
  line-height: 1.9;
}

.feature-heading strong {
  color: #2f6f39;
  font-weight: 950;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.feature-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 190px;
  padding: clamp(18px, 3vw, 26px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--coral), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.feature-card span {
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 58px;
  padding: 8px 10px;
  border: 3px solid var(--navy-950);
  border-radius: 16px;
  background: var(--mint);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.feature-card:nth-child(2) span,
.feature-card:nth-child(4) span {
  background: var(--yellow);
}

.feature-card:nth-child(3) span,
.feature-card:nth-child(5) span {
  background: var(--pink);
  color: #fff;
}

.feature-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.feature-message {
  margin: 0;
  padding: clamp(18px, 4vw, 28px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  color: #fff;
  box-shadow: 8px 8px 0 var(--navy-950);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 950;
  line-height: 1.5;
  text-shadow: 2px 2px 0 rgba(6, 26, 61, 0.2);
}

.recommend-section {
  display: grid;
  gap: clamp(28px, 5vw, 46px);
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.recommend-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: clamp(18px, 3vw, 26px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--mint), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.recommend-card:nth-child(2),
.recommend-card:nth-child(5) {
  box-shadow: 0 7px 0 var(--yellow), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.recommend-card:nth-child(3),
.recommend-card:nth-child(6) {
  box-shadow: 0 7px 0 var(--pink), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.recommend-card span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #6ab66b;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

.recommend-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.contents-section {
  display: grid;
  gap: clamp(30px, 5vw, 52px);
  text-align: center;
}

.contents-section .feature-heading span {
  display: inline-flex;
  justify-self: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 224, 79, 0.28);
  color: #8a6a15;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  line-height: 1.3;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.contents-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}

.contents-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 220px;
  padding: clamp(20px, 4vw, 30px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--mint), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.contents-card:nth-child(2) {
  box-shadow: 0 7px 0 var(--yellow), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.contents-card:nth-child(3) {
  box-shadow: 0 7px 0 var(--pink), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.contents-card:nth-child(4) {
  box-shadow: 0 7px 0 var(--coral), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.contents-card span {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(88, 214, 201, 0.22);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.contents-card:nth-child(2) span {
  background: rgba(255, 224, 79, 0.35);
}

.contents-card:nth-child(3) span {
  background: rgba(255, 77, 151, 0.18);
}

.contents-card:nth-child(4) span {
  background: rgba(255, 128, 94, 0.18);
}

.contents-card h3,
.contents-card p {
  margin: 0;
}

.contents-card h3 {
  color: var(--navy-900);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.contents-card p {
  color: rgba(74, 86, 110, 0.7);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 850;
  line-height: 1.6;
}

.contents-card-image {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid var(--navy-950);
  border-radius: 18px;
  background: #fff;
  object-fit: cover;
}

.contents-image-frame {
  display: grid;
  overflow: hidden;
  width: 100%;
  height: 260px;
  margin-top: 4px;
  place-items: center;
}

.contents-card-image.rulebook-image {
  place-self: center;
  width: auto;
  max-width: 100%;
  height: 254px;
  max-height: 100%;
  object-fit: contain;
}

.contents-photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
}

.contents-photo-card {
  position: relative;
  display: grid;
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  border: 4px solid var(--navy-950);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 7px 0 var(--mint), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.contents-photo-card img {
  display: block;
  width: 100%;
  max-height: 760px;
  border: 3px solid var(--navy-950);
  border-radius: 18px;
  object-fit: contain;
}

.contents-pin {
  position: absolute;
  display: grid;
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  place-items: center;
  border: 4px solid var(--navy-950);
  border-radius: 50% 50% 50% 12px;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 950;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-8deg);
  box-shadow: 4px 6px 0 rgba(6, 26, 61, 0.14);
}

.contents-pin:nth-of-type(3) {
  background: var(--pink);
  color: #fff;
}

.contents-pin:nth-of-type(4) {
  background: var(--mint);
}

.contents-pin:nth-of-type(5) {
  background: var(--coral);
  color: #fff;
}

.contents-pin:nth-of-type(6) {
  background: var(--navy-950);
  color: #fff;
}

.kijibato-contents-photo .pin-song {
  top: 49%;
  left: 43%;
}

.kijibato-contents-photo .pin-jama {
  top: 43%;
  left: 75%;
}

.kijibato-contents-photo .pin-help {
  top: 72%;
  left: 68%;
}

.kijibato-contents-photo .pin-rule {
  top: 28%;
  left: 57%;
}

.neko-contents-photo .pin-board {
  top: 78%;
  left: 33%;
}

.neko-contents-photo .pin-card {
  top: 69%;
  left: 73%;
}

.neko-contents-photo .pin-chip {
  top: 59%;
  left: 26%;
}

.neko-contents-photo .pin-hand {
  top: 61%;
  left: 47%;
}

.neko-contents-photo .pin-rule {
  top: 25%;
  left: 31%;
}

.contents-list {
  display: grid;
  gap: 14px;
}

.contents-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: clamp(16px, 3vw, 22px);
  border: 4px solid var(--navy-950);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 0 var(--yellow), 7px 10px 0 rgba(6, 26, 61, 0.1);
}

.contents-list-no-number .contents-list-item {
  grid-template-columns: 1fr;
}

.contents-list-item:nth-child(2) {
  box-shadow: 0 6px 0 var(--pink), 7px 10px 0 rgba(6, 26, 61, 0.1);
}

.contents-list-item:nth-child(3) {
  box-shadow: 0 6px 0 var(--mint), 7px 10px 0 rgba(6, 26, 61, 0.1);
}

.contents-list-item:nth-child(4) {
  box-shadow: 0 6px 0 var(--coral), 7px 10px 0 rgba(6, 26, 61, 0.1);
}

.contents-list-item:nth-child(5) {
  box-shadow: 0 6px 0 var(--navy-950), 7px 10px 0 rgba(6, 26, 61, 0.1);
}

.contents-list-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1;
}

.contents-list-item h3,
.contents-list-item p {
  margin: 0;
}

.contents-list-item h3 {
  color: var(--navy-900);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.contents-list-item p {
  margin-top: 4px;
  color: rgba(74, 86, 110, 0.72);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  font-weight: 850;
  line-height: 1.5;
}

.game-detail-section {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  text-align: center;
}

.game-detail-section .detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.game-detail-section .detail-gallery.single {
  grid-template-columns: minmax(0, 1fr);
}

.game-detail-section .detail-gallery article {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(14px, 3vw, 22px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--mint), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-detail-section .detail-gallery article:nth-child(2) {
  box-shadow: 0 7px 0 var(--yellow), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-detail-section .detail-gallery article:nth-child(3) {
  box-shadow: 0 7px 0 var(--pink), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-detail-section .detail-gallery article:nth-child(4) {
  box-shadow: 0 7px 0 var(--coral), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.game-detail-section .detail-gallery img {
  width: 100%;
  border: 3px solid var(--navy-950);
  border-radius: 18px;
  background: #fff;
}

.movie-section {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  text-align: center;
}

.movie-card {
  padding: clamp(14px, 3vw, 22px);
  border: 4px solid var(--navy-950);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 var(--yellow), 8px 12px 0 rgba(6, 26, 61, 0.12);
}

.movie-section .video-frame {
  margin-top: 0;
  border: 3px solid var(--navy-950);
  border-radius: 18px;
}

.lineup-section,
.freeplay-section,
.event-section,
.members-section,
.contact-section {
  padding-top: clamp(82px, 12vw, 144px);
  padding-bottom: clamp(82px, 12vw, 144px);
}

.section-title {
  margin-bottom: clamp(34px, 7vw, 74px);
}

.game-grid {
  align-items: stretch;
}

.game-card {
  height: 100%;
}

.lineup-section .game-card a {
  align-content: start;
}

.lineup-section .game-body {
  padding-top: clamp(18px, 3vw, 28px);
}

.notice-board,
.member-grid {
  gap: clamp(20px, 4vw, 38px);
}

.notice-card,
.contact-panel {
  padding: clamp(24px, 5vw, 46px);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.game-card.reveal:nth-child(2),
.notice-card.reveal:nth-child(2),
.member-card.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.game-card.reveal:nth-child(3),
.member-card.reveal:nth-child(3) {
  transition-delay: 170ms;
}

.game-card.reveal:nth-child(4) {
  transition-delay: 240ms;
}

.game-card.reveal:nth-child(5) {
  transition-delay: 300ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .button,
  .game-card,
  .site-header,
  .page-top-button {
    transition: none;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}

@media (max-width: 720px) {
  .countdown-strip {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1120px);
    margin-top: -22px;
    text-align: center;
  }

  .countdown-strip::before,
  .countdown-strip::after {
    display: none;
  }

  .countdown-label {
    justify-self: center;
  }

  .countdown-card {
    justify-self: center;
    min-width: 150px;
  }

  .countdown-link {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .hero-inner {
    transform: none;
  }

  .hero-countdown {
    display: inline-grid;
    justify-self: center;
    grid-template-columns: auto auto auto;
    gap: 6px;
    align-items: baseline;
    margin: 8px auto 0;
    padding: 10px 14px;
    border: 3px solid var(--navy-950);
    border-radius: 18px;
    background: var(--pink);
    color: #fff;
    box-shadow: 5px 5px 0 var(--yellow);
    font-weight: 950;
    line-height: 1;
  }

  .hero-countdown span {
    grid-column: 1 / -1;
    font-size: 0.8rem;
  }

  .hero-countdown strong {
    font-size: 2.5rem;
    text-shadow: 3px 3px 0 rgba(6, 26, 61, 0.28);
  }

  .hero-countdown small {
    font-size: 0.95rem;
  }

  .page-top-button {
    right: 14px;
    bottom: 14px;
    width: 56px;
    border-width: 3px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--mint);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1) rotate(3deg);
  }

  .freeplay-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .freeplay-card::before {
    top: 18px;
    right: 18px;
    width: 68px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .freeplay-copy {
    justify-items: stretch;
    padding-top: 68px;
  }

  .freeplay-label {
    justify-self: start;
  }

  .freeplay-image {
    transform: rotate(0);
  }

  .game-step-list {
    grid-template-columns: 1fr;
  }

  .how-to-play {
    margin-top: 0;
    padding-top: 0;
  }

  .how-to-heading {
    justify-items: start;
    text-align: left;
  }

  .how-to-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .how-to-card {
    grid-template-rows: auto auto;
  }

  .how-to-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .feature-section {
    gap: 24px;
    text-align: left;
  }

  .feature-heading {
    justify-items: start;
  }

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

  .feature-card {
    grid-template-columns: 72px 1fr;
    min-height: auto;
    justify-items: start;
    text-align: left;
  }

  .feature-message {
    text-align: center;
  }

  .recommend-section .feature-heading {
    justify-items: start;
    text-align: left;
  }

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

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

  .contents-section {
    text-align: left;
  }

  .contents-section .feature-heading {
    justify-items: start;
    text-align: left;
  }

  .contents-section .feature-heading span {
    justify-self: start;
  }

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

  .contents-grid-compact {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .contents-image-frame {
    height: 230px;
  }

  .contents-card-image.rulebook-image {
    height: 224px;
  }

  .contents-photo-layout {
    grid-template-columns: 1fr;
  }

  .contents-photo-card {
    padding: 10px;
  }

  .contents-photo-card img {
    max-height: none;
  }

  .contents-pin {
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: 1.08rem;
  }

  .kijibato-contents-photo .pin-song {
    top: 50%;
    left: 41%;
  }

  .kijibato-contents-photo .pin-jama {
    top: 43%;
    left: 76%;
  }

  .kijibato-contents-photo .pin-help {
    top: 72%;
    left: 68%;
  }

  .kijibato-contents-photo .pin-rule {
    top: 29%;
    left: 58%;
  }

  .neko-contents-photo .pin-board {
    top: 78%;
    left: 33%;
  }

  .neko-contents-photo .pin-card {
    top: 69%;
    left: 74%;
  }

  .neko-contents-photo .pin-chip {
    top: 58%;
    left: 27%;
  }

  .neko-contents-photo .pin-hand {
    top: 61%;
    left: 48%;
  }

  .neko-contents-photo .pin-rule {
    top: 25%;
    left: 31%;
  }

  .contents-list {
    gap: 12px;
  }

  .contents-list-item {
    border-width: 3px;
  }

  .game-detail-section {
    text-align: left;
  }

  .game-detail-section .feature-heading {
    justify-items: start;
    text-align: left;
  }

  .game-detail-section .detail-gallery {
    grid-template-columns: 1fr;
  }

  .movie-section {
    text-align: left;
  }

  .movie-section .feature-heading {
    justify-items: start;
    text-align: left;
  }

  .lineup-section,
  .freeplay-section,
  .event-section,
  .members-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
