:root {
  --ink: #071320;
  --navy-950: #061321;
  --navy-900: #081b31;
  --navy-800: #0d2944;
  --navy-700: #17466c;
  --sky: #9bc9df;
  --gold: #e8bd58;
  --gold-bright: #ffd978;
  --wine: #781f35;
  --wine-deep: #3b111f;
  --paper: #f4f1e9;
  --paper-blue: #edf3f5;
  --white: #ffffff;
  --muted: #aebdca;
  --border-dark: rgba(232, 189, 88, 0.24);
  --border-light: rgba(7, 19, 32, 0.16);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --container: 1320px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy-950);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

figure,
h1,
h2,
h3,
p {
  margin-top: 0;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.container {
  width: min(100% - 56px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(6, 19, 33, 0.88);
  border-bottom: 1px solid rgba(232, 189, 88, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(6, 19, 33, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.35;
}

.brand-copy strong {
  color: var(--paper);
  font-size: 15px;
}

.brand-copy small {
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  color: #dce6ed;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-contact {
  margin-left: 8px;
  padding-inline: 16px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 4px;
}

.primary-nav .nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  height: calc(100svh - 112px);
  max-height: 780px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(1.08) saturate(0.92) contrast(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 13, 24, 0.94) 0%, rgba(4, 13, 24, 0.78) 44%, rgba(4, 13, 24, 0.18) 78%),
    linear-gradient(0deg, rgba(6, 19, 33, 0.9) 0%, transparent 48%);
}

.hero-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: 44px;
}

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

.eyebrow,
.section-kicker,
.club-label {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.16;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.mobile-break {
  display: none;
}

.hero-lead {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 700;
}

.hero-text {
  max-width: 710px;
  margin-bottom: 26px;
  color: #edf5f8;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after,
.text-link::after {
  content: "→";
  font-size: 1.05em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 28px rgba(255, 217, 120, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe69d;
  box-shadow: 0 10px 34px rgba(255, 217, 120, 0.32);
}

.button-outline {
  color: var(--paper);
  background: rgba(6, 19, 33, 0.34);
  border-color: rgba(232, 189, 88, 0.58);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--gold-bright);
  background: rgba(6, 19, 33, 0.7);
  border-color: var(--gold-bright);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-index a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  padding: 14px 18px 8px 0;
  color: var(--paper);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-index a + a {
  padding-left: 18px;
}

.hero-index a:last-child {
  border-right: 0;
}

.hero-index span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.hero-index strong {
  font-size: 13px;
}

.hero-index small {
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 104px 0;
}

.section-header {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-header-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  max-width: none;
  align-items: end;
  gap: 64px;
}

.section-header h2,
.category-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

.section-header > p,
.section-header-split > p,
.category-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.9;
}

.featured-section {
  background: var(--navy-900);
}

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

.feature-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--navy-800), var(--wine-deep));
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.feature-card img,
.feature-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card img {
  z-index: -2;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88) contrast(1.03);
  transition: transform 420ms ease, filter 220ms ease;
}

.feature-overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgba(3, 12, 22, 0.96) 0%, rgba(3, 12, 22, 0.12) 74%);
}

.feature-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.feature-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.feature-copy strong {
  margin-top: 2px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  line-height: 1.4;
}

.feature-copy > span {
  margin-top: 5px;
  color: #d8e3e9;
  font-size: 12px;
  line-height: 1.65;
}

.feature-card:hover img,
.feature-card:focus-visible img {
  filter: brightness(0.98) saturate(0.98) contrast(1.02);
  transform: scale(1.035);
}

.category-band {
  padding: 78px 0;
  color: var(--ink);
  background: var(--paper-blue);
  border-block: 1px solid rgba(7, 19, 32, 0.08);
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 72px;
}

.category-heading .section-kicker {
  color: var(--wine);
}

.category-heading h2 {
  margin-bottom: 18px;
  color: var(--navy-900);
}

.category-heading > p:last-child {
  color: #526474;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.category-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, 0.38);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: color 180ms ease, background-color 180ms ease;
}

.category-grid a > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(120, 31, 53, 0.32);
  border-radius: 50%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 700;
}

.category-grid strong {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.5;
}

.category-grid small {
  color: #667886;
  font-size: 10px;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  color: var(--white);
  background: var(--navy-800);
}

.category-grid a:hover strong,
.category-grid a:focus-visible strong,
.category-grid a:hover small,
.category-grid a:focus-visible small {
  color: var(--white);
}

.category-grid a:hover > span,
.category-grid a:focus-visible > span {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.club-section {
  background: var(--wine-deep);
  border-block: 1px solid rgba(232, 189, 88, 0.16);
}

.club-heading {
  text-align: center;
  margin-inline: auto;
}

.club-heading > p:last-child {
  color: #d3c1c5;
}

.club-banner {
  display: block;
  overflow: hidden;
  background: #080b11;
  border: 1px solid rgba(232, 189, 88, 0.45);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.club-banner img {
  width: 100%;
  height: auto;
  filter: brightness(1.1) saturate(0.88);
}

.club-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(232, 189, 88, 0.22);
}

.club-intro h3 {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
}

.club-intro > div:last-child > p {
  color: #e5d9dc;
  line-height: 2;
}

.club-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 38px;
}

.club-video-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.club-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
}

.club-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.9);
}

.club-video-thumb > span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
}

.club-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
}

.club-video-copy strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  line-height: 1.45;
}

.club-video-copy small {
  color: #cdbfc2;
  font-size: 12px;
}

.club-video-card:hover,
.club-video-card:focus-visible {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 217, 120, 0.64);
  transform: translateY(-3px);
}

.content-section {
  background: var(--navy-800);
}

.note-section {
  color: var(--ink);
  background: var(--paper-blue);
}

.note-section .section-kicker {
  color: var(--wine);
}

.note-section .section-header > p,
.note-section .section-header-split > p {
  color: #526474;
}

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

.youtube-card,
.note-article-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.youtube-card {
  background: rgba(4, 17, 29, 0.56);
  border: 1px solid rgba(155, 201, 223, 0.22);
}

.youtube-thumb,
.note-article-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(232, 189, 88, 0.2), rgba(7, 24, 45, 0.88));
}

.youtube-thumb {
  aspect-ratio: 16 / 9;
}

.youtube-thumb img,
.note-article-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 180ms ease;
}

.youtube-thumb img {
  filter: brightness(0.9) saturate(0.9);
}

.youtube-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
}

.youtube-body,
.note-article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.youtube-date,
.note-article-date {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.youtube-title,
.note-article-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.youtube-desc,
.note-article-desc {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 18px;
  color: #b7c8d3;
  font-size: 11px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.youtube-card-link,
.note-article-more {
  margin-top: auto;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
}

.youtube-card:hover,
.youtube-card:focus-visible,
.note-article-card:hover,
.note-article-card:focus-visible {
  border-color: rgba(255, 217, 120, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.youtube-card:hover img,
.youtube-card:focus-visible img,
.note-article-card:hover img,
.note-article-card:focus-visible img {
  transform: scale(1.035);
}

.note-article-card {
  background: var(--white);
  border: 1px solid rgba(7, 19, 32, 0.14);
  box-shadow: 0 8px 24px rgba(7, 19, 32, 0.08);
}

.note-article-thumb {
  height: 0;
  padding-top: 52.36%;
}

.note-article-date {
  color: var(--wine);
}

.note-article-title {
  color: var(--navy-900);
}

.note-article-desc {
  color: #566976;
}

.note-article-more {
  color: var(--wine);
}

.youtube-fallback-card,
.note-fallback-card {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  color: var(--gold-bright);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.note-section .text-link,
.game-section .text-link {
  color: var(--wine);
}

.archive-section {
  background: var(--navy-950);
}

.archive-heading {
  max-width: 900px;
}

.archive-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px;
  align-items: stretch;
}

.archive-image {
  position: relative;
  min-height: 520px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 6px;
}

.archive-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 13, 24, 0.92), rgba(4, 13, 24, 0.04) 64%);
}

.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.78);
}

.archive-image figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  max-width: 580px;
  color: #dce7ec;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
}

.archive-timeline {
  display: grid;
  border-top: 1px solid var(--border-dark);
}

.archive-timeline a {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 130px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--border-dark);
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.archive-timeline time {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 28px;
}

.archive-timeline a > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.archive-timeline strong {
  font-size: 15px;
  line-height: 1.65;
}

.archive-timeline small {
  color: var(--muted);
  font-size: 10px;
}

.archive-timeline a:hover,
.archive-timeline a:focus-visible {
  padding-left: 28px;
  background: rgba(155, 201, 223, 0.07);
}

.archive-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}

.archive-links a {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background-color 180ms ease;
}

.archive-links span {
  color: var(--gold);
  font-size: 10px;
}

.archive-links strong {
  margin-top: auto;
  font-size: 14px;
}

.archive-links small {
  color: var(--muted);
  font-size: 10px;
}

.archive-links a:hover,
.archive-links a:focus-visible {
  background: var(--navy-800);
}

.archive-old-site {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.archive-old-site h3 {
  margin-bottom: 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 27px;
}

.archive-old-site p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.game-section {
  color: var(--ink);
  background: var(--paper);
}

.game-section .section-kicker {
  color: var(--wine);
}

.game-section .section-header > p,
.game-section .section-header-split > p {
  color: #526474;
}

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

.game-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(7, 19, 32, 0.1);
}

.game-card-new {
  border-color: rgba(120, 31, 53, 0.45);
}

.game-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 180ms ease;
}

.game-version,
.new-label {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 6px 9px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
}

.game-version {
  left: 14px;
  color: var(--ink);
  background: var(--gold-bright);
}

.new-label {
  right: 14px;
  color: var(--white);
  background: var(--wine);
}

.game-copy {
  padding: 28px;
}

.game-copy h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
}

.game-copy p {
  color: #526474;
}

.game-thumb:hover img,
.game-thumb:focus-visible img {
  filter: brightness(1.06) saturate(1.05);
  transform: scale(1.025);
}

.network-section {
  color: var(--ink);
  background: var(--paper-blue);
}

.network-section .section-kicker {
  color: var(--wine);
}

.network-section .section-header > p,
.network-section .section-header-split > p {
  color: #526474;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.network-grid a {
  min-height: 128px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.36);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: color 180ms ease, background-color 180ms ease;
}

.network-number {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 18px;
}

.network-grid a > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.network-grid strong {
  color: var(--navy-900);
  font-size: 14px;
}

.network-grid small {
  color: #617583;
  font-size: 11px;
}

.network-grid a:hover,
.network-grid a:focus-visible {
  color: var(--white);
  background: var(--navy-800);
}

.network-grid a:hover strong,
.network-grid a:focus-visible strong,
.network-grid a:hover small,
.network-grid a:focus-visible small,
.network-grid a:hover .network-number,
.network-grid a:focus-visible .network-number {
  color: var(--white);
}

.contact-section {
  padding: 96px 0;
  color: var(--ink);
  background: var(--gold-bright);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 86px;
}

.contact-copy .section-kicker {
  color: var(--wine);
}

.contact-copy h2 {
  margin-bottom: 22px;
  color: var(--navy-900);
}

.contact-copy > p:last-child {
  margin-bottom: 0;
  color: #4d4a42;
}

.contact-details {
  border-top: 1px solid rgba(7, 19, 32, 0.28);
}

.contact-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 19, 32, 0.22);
}

.contact-row > span {
  grid-row: 1 / 3;
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
}

.contact-row strong {
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: 16px;
}

.contact-row small {
  color: #5f5b51;
  font-size: 11px;
}

.contact-actions {
  margin-top: 30px;
}

.site-footer {
  padding: 62px 0 26px;
  color: #d8e3e9;
  background: #030c15;
  border-top: 1px solid rgba(232, 189, 88, 0.2);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-main strong {
  color: var(--paper);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
}

.footer-main p {
  max-width: 520px;
  margin: 10px 0 0;
  color: #899ba8;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: #738794;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom a {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .primary-nav a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .primary-nav .nav-contact {
    padding-inline: 12px;
  }

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

  .category-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .js .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px max(28px, calc((100% - var(--container)) / 2));
    background: rgba(6, 19, 33, 0.98);
    border-bottom: 1px solid var(--border-dark);
  }

  .js .primary-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .js .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a,
  .primary-nav .nav-contact {
    min-height: 48px;
    margin: 0;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .primary-nav .nav-contact {
    color: var(--gold-bright);
    background: transparent;
  }

  .hero h1 {
    font-size: 48px;
  }

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

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

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

  .section-header-split,
  .club-intro,
  .archive-story,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-header-split {
    align-items: start;
  }

  .archive-image {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    min-height: 560px;
    height: calc(100svh - 88px);
    max-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 13, 24, 0.9), rgba(4, 13, 24, 0.44)),
      linear-gradient(0deg, rgba(6, 19, 33, 0.94), rgba(6, 19, 33, 0.05) 72%);
  }

  .hero-inner {
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-index {
    margin-top: 26px;
  }

  .hero-index a {
    padding-right: 10px;
  }

  .hero-index a + a {
    padding-left: 10px;
  }

  .hero-index strong {
    font-size: 11px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2,
  .category-heading h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .featured-grid,
  .club-video-grid,
  .game-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 20px;
  }

  .feature-copy strong {
    font-size: 21px;
  }

  .category-band {
    padding: 64px 0;
  }

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

  .category-grid a {
    min-height: 122px;
    padding: 15px;
  }

  .club-intro h3 {
    font-size: 30px;
  }

  .club-video-card {
    grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1fr);
  }

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

  .archive-timeline a {
    grid-template-columns: 80px minmax(0, 1fr);
    min-height: 112px;
  }

  .archive-old-site {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-section {
    padding: 72px 0;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    grid-template-columns: 1fr;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 12px 14px 20px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .mobile-break {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.28;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-index {
    display: none;
  }

  .section-header h2,
  .category-heading h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .section-header > p,
  .section-header-split > p,
  .category-heading > p:last-child {
    font-size: 14px;
  }

  .featured-grid,
  .category-grid,
  .media-grid,
  .archive-links {
    grid-template-columns: 1fr;
  }

  .feature-card {
    aspect-ratio: 4 / 3;
  }

  .category-grid a {
    min-height: 104px;
  }

  .club-banner {
    overflow-x: auto;
  }

  .club-banner img {
    width: 760px;
    max-width: none;
  }

  .club-video-card {
    grid-template-columns: 1fr;
  }

  .youtube-body,
  .note-article-body {
    padding: 18px;
  }

  .youtube-title,
  .note-article-title {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }

  .youtube-desc,
  .note-article-desc {
    -webkit-line-clamp: 2;
  }

  .archive-image {
    min-height: 330px;
  }

  .archive-image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
  }

  .archive-timeline a {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding-inline: 4px;
  }

  .archive-timeline time {
    font-size: 22px;
  }

  .archive-links a {
    min-height: 128px;
  }

  .game-copy {
    padding: 22px;
  }

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

  .contact-row > span {
    grid-row: auto;
    margin-bottom: 5px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-main {
    gap: 30px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
