/* Tokyo game center draft page: isolated UI for /stores/categories/game-center/tokyo/ */
.game-center-page {
  --gc-bg: #f6f7f4;
  --gc-surface: #ffffff;
  --gc-surface-soft: #f0f5f2;
  --gc-text: #1d2725;
  --gc-muted: #5d6b66;
  --gc-line: #d9e1dc;
  --gc-accent: #19675f;
  --gc-accent-strong: #104c46;
  --gc-warn-bg: #fff8df;
  --gc-warn-line: #ead28a;
  margin: 0;
  background: var(--gc-bg);
  color: var(--gc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

.gc-site-header {
  border-bottom: 1px solid var(--gc-line);
  background: rgba(255, 255, 255, 0.96);
}

.gc-header-inner,
.gc-page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-inline: clamp(14px, 4vw, 32px);
}

.gc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}

.gc-logo {
  color: var(--gc-text);
  font-weight: 800;
  text-decoration: none;
}

.gc-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.gc-nav a,
.gc-button,
.gc-answer-card,
.gc-guide-card {
  min-height: 44px;
}

.gc-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--gc-text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.gc-page {
  padding-block: 14px 48px;
}

.gc-breadcrumb {
  margin: 0 0 10px;
  color: var(--gc-muted);
  font-size: 0.88rem;
}

.gc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.gc-breadcrumb li:not(:last-child)::after {
  content: "/";
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: #9aa7a2;
  line-height: 1;
}

.gc-breadcrumb a,
.gc-breadcrumb span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  line-height: 1.45;
}

.gc-breadcrumb a {
  color: var(--gc-accent-strong);
  font-weight: 700;
}

.gc-hero {
  padding: clamp(22px, 5vw, 42px) 0 20px;
}

.gc-eyebrow,
.gc-section-kicker {
  margin: 0 0 6px;
  color: var(--gc-accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.gc-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.gc-lead {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--gc-text);
  font-size: 1.04rem;
}

.gc-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin: 18px 0 0;
}

.gc-meta div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-meta dt {
  color: var(--gc-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.gc-meta dd {
  margin: 1px 0 0;
  color: var(--gc-accent-strong);
  font-weight: 800;
}

.gc-page-meta {
  padding: 0 0 18px;
}

.gc-page-meta .gc-meta {
  margin-top: 0;
}

.gc-section {
  padding: clamp(20px, 4vw, 30px) 0;
  border-top: 1px solid var(--gc-line);
}

.gc-section-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.gc-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.4;
  letter-spacing: 0;
}

.gc-section-lead {
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--gc-muted);
}

.gc-section-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 10px;
  color: var(--gc-accent-strong);
  font-weight: 800;
}

.gc-answer-grid,
.gc-guide-grid,
.gc-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gc-answer-card,
.gc-guide-card {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 14px;
  border: 1px solid #b9d5cf;
  border-radius: 8px;
  background: #f7fbf9;
  color: var(--gc-text);
  text-decoration: none;
}

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

.gc-guide-card {
  border-color: var(--gc-line);
  background: var(--gc-surface);
}

.gc-answer-card strong,
.gc-guide-card strong {
  color: var(--gc-accent-strong);
  line-height: 1.45;
}

.gc-answer-card span,
.gc-guide-card span {
  color: var(--gc-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.gc-data-policy {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--gc-warn-line);
  border-radius: 8px;
  background: var(--gc-warn-bg);
}

.gc-data-policy p {
  margin: 0;
  color: #554921;
}

.gc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.gc-comparison-table caption {
  caption-side: bottom;
  padding: 8px 10px 12px;
  color: var(--gc-muted);
  font-size: 0.84rem;
  text-align: left;
}

.gc-comparison-table th,
.gc-comparison-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--gc-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.gc-comparison-table thead th {
  background: var(--gc-surface-soft);
  color: var(--gc-accent-strong);
  font-size: 0.9rem;
  white-space: nowrap;
}

.gc-comparison-table tbody th {
  min-width: 190px;
  background: #fbfcfb;
}

.gc-comparison-table a,
.gc-mini-list a {
  color: var(--gc-accent-strong);
  font-weight: 800;
}

.gc-comparison-table td a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.gc-ad-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 10px 0 22px;
  border: 1px dashed #bac7c2;
  border-radius: 8px;
  background: #fbfcfb;
  color: var(--gc-muted);
  font-size: 0.86rem;
}

.gc-store-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-store-card {
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-store-card__area {
  margin: 0 0 4px;
  color: var(--gc-accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.gc-store-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.gc-store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.gc-store-tags li {
  max-width: 100%;
  padding: 3px 8px;
  border: 1px solid #b9d5cf;
  border-radius: 999px;
  background: #f7fbf9;
  color: var(--gc-accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.gc-store-card__summary {
  margin: 6px 0 10px;
  color: var(--gc-muted);
  font-weight: 700;
}

.gc-store-facts {
  display: grid;
  gap: 7px;
  margin: 0;
}

.gc-store-facts div {
  display: grid;
  grid-template-columns: 5.2em minmax(0, 1fr);
  gap: 10px;
}

.gc-store-facts dt {
  color: var(--gc-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.gc-store-facts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.gc-store-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.gc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--gc-accent);
  border-radius: 6px;
  background: var(--gc-accent);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.gc-button--secondary {
  border-color: #4f625d;
  background: #4f625d;
}

.gc-button--detail {
  border-color: #8c4d1f;
  background: #8c4d1f;
}

.gc-mini-list,
.gc-related-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-mini-list li,
.gc-related-list li {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid var(--gc-line);
}

.gc-mini-list span,
.gc-related-list small {
  color: var(--gc-muted);
  font-size: 0.88rem;
}

.gc-faq-list {
  display: grid;
  gap: 10px;
}

.gc-faq-item {
  padding: 12px 14px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-faq-item summary {
  min-height: 44px;
  cursor: pointer;
  font-weight: 800;
}

.gc-faq-item p {
  margin-bottom: 0;
  color: var(--gc-muted);
}

@media (max-width: 760px) {
  .gc-header-inner {
    display: grid;
    gap: 4px;
    padding-block: 10px;
  }

  .gc-nav {
    margin-inline: -4px;
    padding-bottom: 4px;
  }

  .gc-hero {
    padding-top: 18px;
  }

  .gc-hero h1 {
    font-size: 1.65rem;
  }

  .gc-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .gc-meta,
  .gc-answer-grid,
  .gc-guide-grid,
  .gc-store-grid {
    grid-template-columns: 1fr;
  }

  .gc-data-policy {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .gc-table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
  }

  .gc-comparison-table {
    min-width: 0;
  }

  .gc-comparison-table caption,
  .gc-comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .gc-comparison-table,
  .gc-comparison-table tbody,
  .gc-comparison-table tr,
  .gc-comparison-table th,
  .gc-comparison-table td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .gc-comparison-table tr {
    margin: 8px 0;
    padding: 10px 0;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: var(--gc-surface);
  }

  .gc-comparison-table tbody th {
    min-width: 0;
    padding: 4px 12px 8px;
    border-bottom: 0;
  }

  .gc-comparison-table td {
    display: grid;
    grid-template-columns: minmax(5.5em, 30%) minmax(0, 1fr);
    gap: 8px;
    padding: 5px 12px;
    border-bottom: 0;
    line-height: 1.6;
  }

  .gc-comparison-table td::before {
    content: attr(data-label);
    color: var(--gc-muted);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .gc-ad-placeholder {
    min-height: 280px;
  }

  .gc-store-card {
    padding: 14px;
  }

  .gc-store-facts div {
    grid-template-columns: 5em minmax(0, 1fr);
    gap: 8px;
  }

  .gc-store-actions {
    grid-template-columns: 1fr;
  }
}

.game-center-page .skip-link,
.gc-logo,
.gc-comparison-table tbody th a,
.gc-mini-list a,
.gc-related-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.gc-comparison-table tbody th a,
.gc-mini-list a,
.gc-related-list a {
  line-height: 1.45;
}

.gc-comparison-table tbody th a,
.gc-mini-list a {
  min-width: 44px;
}

.gc-faq-item summary {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.game-center-page .skip-link {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 1000;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--gc-text);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.12s ease;
}

.game-center-page .skip-link:focus,
.game-center-page .skip-link:focus-visible {
  transform: translateY(0);
}

.gc-store-card__feature {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-left: 4px solid #8ebdb5;
  border-radius: 6px;
  background: #f5faf8;
  color: var(--gc-text);
  font-weight: 700;
  line-height: 1.6;
}

.gc-store-card__scale {
  display: grid;
  gap: 4px;
  margin: 10px 0 12px;
  padding: 10px 12px;
  border: 1px solid #d7b56d;
  border-radius: 6px;
  background: #fffaf0;
  line-height: 1.6;
}

.gc-store-card__scale strong {
  color: #6d4517;
  font-size: 0.92rem;
}

.gc-store-card__scale span {
  color: var(--gc-text);
}

.gc-store-card__visit-note {
  margin: 10px 0 0;
  padding: 9px 11px;
  border-left: 3px solid var(--gc-accent);
  background: #f8fbfa;
  color: var(--gc-text);
  line-height: 1.65;
}

.gc-store-card__note,
.gc-visit-checks {
  margin: 10px 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: #fbfcfb;
}

.gc-store-card__note h4,
.gc-visit-checks h4 {
  margin: 0 0 4px;
  color: var(--gc-accent-strong);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gc-store-card__note p {
  margin: 0;
  color: var(--gc-text);
  line-height: 1.65;
}

.gc-visit-checks ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--gc-text);
}

.gc-fact-note {
  display: block;
  margin-top: 4px;
  color: var(--gc-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.gc-store-tags--hero {
  margin-top: 14px;
}

.gc-detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.gc-detail-panel {
  padding: 14px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-detail-panel h2 {
  margin: 0 0 8px;
  color: var(--gc-accent-strong);
  font-size: 1rem;
  line-height: 1.45;
}

.gc-detail-panel p {
  margin: 0;
  color: var(--gc-muted);
}

.gc-suitable-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 1.1em;
  color: var(--gc-muted);
}

.gc-suitable-list li::marker {
  color: var(--gc-accent-strong);
}

.gc-visit-checks--detail {
  margin-top: 14px;
}

.gc-visit-checks--detail h3 {
  margin: 0 0 4px;
  color: var(--gc-accent-strong);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gc-detail-facts {
  max-width: 880px;
  padding: 16px;
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  background: var(--gc-surface);
}

.gc-detail-facts div {
  grid-template-columns: 7em minmax(0, 1fr);
}

.gc-detail-actions {
  max-width: 520px;
  margin-top: 12px;
}

.gc-guide-card--static {
  min-height: auto;
}

.gc-check-card ul {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  padding-left: 1.1em;
  color: var(--gc-text);
}

.gc-check-card li {
  line-height: 1.6;
}

.gc-section-link-wrap {
  margin: 14px 0 0;
}

@media (max-width: 760px) {
  .gc-detail-two-col {
    grid-template-columns: 1fr;
  }

  .gc-detail-facts {
    padding: 14px;
  }

  .gc-detail-facts div {
    grid-template-columns: 5em minmax(0, 1fr);
  }
}
