/* Anjuyou Official Site — matched to pencil-new.pen (1440 PC) */

:root {
  --surface-primary: #ffffff;
  --surface-warm: #f0f7ff;
  --surface-mint: #e8f3fc;
  --surface-dark: #0f172a;
  --surface-dark-soft: #1e293b;
  --fg-primary: #0f172a;
  --fg-secondary: #475569;
  --fg-muted: #64748b;
  --fg-on-dark: #ffffff;
  --fg-on-dark-muted: #94a3b8;
  --fg-on-blue-muted: #a8e5ff;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-section: #1c4ed9;
  --accent-sky: #0ea5e9;
  --accent-light: #38bdf8;
  --contact-card: #3e6ced;
  --border: #d6e4f5;
  --footer-divider: #d1d7de;
  --font-heading: "Funnel Sans", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --header-height: 120px;
  --section-pad-y: 100px;
  --section-pad-x: 80px;
  --content-width: 1280px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-header: 0 1px 0 rgba(28, 22, 18, 0.03), 0 4px 16px rgba(28, 22, 18, 0.04);
  --shadow-media: 0 16px 40px rgba(28, 22, 18, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-primary);
  background: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.container-site {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: 44px;
  color: var(--fg-primary);
  line-height: 1.25;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-secondary);
  line-height: 1.4;
}

.section-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* Buttons — design: pill, accent fill, white label */
.btn-anjuyou {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-anjuyou:hover,
.btn-anjuyou:focus-visible {
  background: var(--accent-hover);
  color: #fff !important;
}

.btn-anjuyou:active {
  transform: translateY(1px);
}

.btn-anjuyou-lg {
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

/* White CTA on blue sections (Game Download) */
.btn-anjuyou-light {
  background: #ffffff;
  color: var(--accent-section) !important;
}

.btn-anjuyou-light:hover,
.btn-anjuyou-light:focus-visible {
  background: #f8fbff;
  color: var(--accent-hover) !important;
}

.btn-anjuyou i {
  font-size: 1em;
  line-height: 1;
}

/* ========== Header 1440×120 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  height: var(--header-height);
  background: var(--surface-primary);
  box-shadow: var(--shadow-header);
}

.site-header .container-site {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 285px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.page-top-anchor,
.section-anchor {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

#about,
#games,
#philosophy,
#why,
#contact {
  scroll-margin-top: var(--header-height);
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-secondary);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ========== Banner 1440×720 — left-align with Logo / modules ========== */
.banner {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: linear-gradient(200deg, #60a5fa 0%, #2563eb 45%, #0ea5e9 100%);
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(15, 23, 42, 0.4) 45%,
    rgba(15, 23, 42, 0.06) 100%
  );
}

.banner-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}

.banner-content {
  width: 680px;
  max-width: 100%;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.banner-eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-light);
  text-align: left;
}

.banner-title {
  margin: 0;
  width: 100%;
  max-width: 680px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  text-align: left;
}

.banner-subtitle {
  margin: 0;
  width: 100%;
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  text-align: left;
}

.banner .btn-anjuyou {
  align-self: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* ========== About — blue section ========== */
.about {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--accent-section);
}

.about .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.about-visual {
  flex: 0 0 560px;
  width: 560px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--accent-sky);
}

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

.about-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.about .section-label {
  color: var(--fg-on-blue-muted);
}

.about .section-title {
  color: #ffffff;
}

.about .section-subtitle {
  color: #ffffff;
  max-width: 560px;
}

.about .section-body {
  color: var(--fg-on-blue-muted);
  max-width: 560px;
}

/* ========== Philosophy ========== */
.philosophy {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--surface-primary);
  text-align: center;
}

.philosophy .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.philosophy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.pillar-card {
  background: var(--surface-warm);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-primary);
  box-shadow: 0 4px 16px rgba(28, 22, 18, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.pillar-icon.color-accent {
  color: var(--accent);
}

.pillar-icon.color-sky {
  color: var(--accent-sky);
}

.pillar-icon.color-light {
  color: var(--accent-light);
}

.pillar-card h3 {
  font-size: 24px;
  color: var(--fg-primary);
}

.pillar-card p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.6;
  max-width: 280px;
}

/* ========== Our Game — blue section ========== */
.game {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--accent-section);
}

.game .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
}

.game-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.game-visual {
  flex: 0 0 560px;
  width: 560px;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-media);
}

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

.game-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 520px;
}

.game .section-label {
  color: var(--fg-on-blue-muted);
}

.game .section-title {
  color: #ffffff;
}

.game .section-body {
  color: var(--fg-on-blue-muted);
  max-width: 520px;
}

/* ========== Why Choose Us ========== */
.why {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--surface-primary);
  text-align: center;
}

.why .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.why-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  text-align: left;
}

.why-card {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 221px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-icon.color-accent {
  color: var(--accent);
}

.why-icon.color-sky {
  color: var(--accent-sky);
}

.why-icon.color-light {
  color: var(--accent-light);
}

.why-card h3 {
  font-size: 20px;
  line-height: 1.25;
  color: var(--fg-primary);
}

.why-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
}

/* ========== Contact — blue section ========== */
.contact {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--accent-hover);
  text-align: center;
}

.contact .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact .section-label {
  color: var(--fg-on-blue-muted);
}

.contact .section-title {
  color: var(--fg-on-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  text-align: left;
}

.contact-card {
  background: var(--contact-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 203px;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 18px;
  color: #ffffff;
}

.contact-card p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.65;
  white-space: pre-line;
}

.contact-card a {
  color: #ffffff;
}

.contact-card a:hover {
  opacity: 0.85;
}

/* ========== Footer — white ========== */
.site-footer {
  background: #ffffff;
  color: var(--fg-primary);
  padding: 72px var(--section-pad-x) 40px;
}

.site-footer .container-site {
  padding-inline: 0;
  max-width: var(--content-width);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
}

.footer-logo {
  width: 285px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.6;
  max-width: 380px;
}

.footer-col {
  width: 180px;
  flex-shrink: 0;
}

.footer-col.legal {
  width: 220px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--surface-dark-soft);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-secondary);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: var(--footer-divider);
  margin-bottom: 24px;
}

.footer-copy {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--fg-on-dark-muted);
}

.site-footer .container-site:not(.footer-top) {
  text-align: center;
}

/* Legal pages */
.legal-hero {
  background: var(--surface-warm);
  padding: 40px 0 48px;
}

.legal-hero.tos {
  background: var(--surface-mint);
}

.legal-hero .container-site {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.legal-hero .back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
}

.legal-hero .back-home:hover {
  color: var(--accent-hover);
}

.legal-hero .section-label {
  margin: 0;
  display: block;
}

.legal-hero.tos .section-label {
  color: var(--accent-sky);
}

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

.legal-meta {
  font-size: 14px;
  color: var(--fg-muted);
}

.legal-body {
  padding: 48px 0 80px;
}

.legal-body .container-site {
  max-width: 1440px;
}

.legal-content {
  width: 100%;
  max-width: none;
}

.legal-lead {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.legal-section + .legal-section {
  margin-top: 32px;
}

.legal-section h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg-primary);
}

.legal-section h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 18px 0 10px;
  color: var(--fg-primary);
}

.legal-section p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section li {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.legal-section a {
  color: var(--accent);
}

.legal-section a:hover {
  color: var(--accent-hover);
}

.legal-address {
  margin-top: 8px;
  white-space: pre-line;
}

.back-home {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.back-home:hover {
  color: var(--accent-hover);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent-hover);
  color: #fff;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-warm);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  outline: none;
}

.site-header.is-open .nav-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* PC layout + mobile responsive */
@media (max-width: 1439.98px) {
  .about-visual,
  .game-visual {
    flex-basis: min(560px, 42vw);
    width: min(560px, 42vw);
  }

  .about-visual {
    height: auto;
    aspect-ratio: 560 / 420;
  }

  .game-visual {
    height: auto;
    aspect-ratio: 560 / 320;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --section-pad-x: 40px;
    --section-pad-y: 72px;
    --header-height: 88px;
  }

  .brand-logo,
  .footer-logo {
    width: 200px;
    height: 58px;
  }

  .banner {
    height: auto;
    min-height: 560px;
  }

  .banner-content {
    width: min(680px, 100%);
    padding-top: 100px;
    padding-bottom: 72px;
  }

  .banner-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .about-grid,
  .game-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .about-visual,
  .game-visual {
    width: 100%;
    flex-basis: auto;
  }

  .about-content,
  .game-content {
    max-width: none;
  }

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

  .footer-top {
    flex-wrap: wrap;
    gap: 36px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-pad-x: 24px;
    --section-pad-y: 64px;
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header .container-site {
    position: relative;
    gap: 12px;
  }

  .brand-logo,
  .footer-logo {
    width: 168px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-right {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--section-pad-x);
    right: var(--section-pad-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: 1040;
  }

  .site-header.is-open .nav-right {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 16px;
  }

  .nav-links a.active {
    background: var(--surface-warm);
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-right .btn-anjuyou {
    width: 100%;
    margin-top: 8px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .banner {
    min-height: 0;
  }

  .banner-content {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .banner-title {
    font-size: 34px;
    line-height: 1.15;
  }

  .banner-subtitle {
    font-size: 16px;
    max-width: none;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .philosophy .container-site,
  .why .container-site,
  .contact .container-site {
    gap: 36px;
  }

  .philosophy-grid,
  .contact-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-card,
  .why-card,
  .contact-card {
    min-height: 0;
  }

  .about,
  .game,
  .philosophy,
  .why,
  .contact {
    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
  }

  .site-footer {
    padding: 56px var(--section-pad-x) 32px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-brand,
  .footer-col,
  .footer-col.legal {
    width: 100%;
    align-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    object-position: center;
    margin-inline: auto;
  }

  .footer-tagline {
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-body {
    padding: 36px 0 64px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-pad-x: 16px;
    --section-pad-y: 48px;
    --header-height: 64px;
  }

  .brand-logo,
  .footer-logo {
    width: 148px;
    height: 42px;
  }

  .banner-content {
    padding-top: 56px;
    padding-bottom: 48px;
    gap: 18px;
  }

  .banner-eyebrow {
    font-size: 12px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .btn-anjuyou-lg {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .section-body {
    font-size: 15px;
  }

  .about-visual {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .game-visual {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .pillar-card {
    padding: 28px 20px;
  }

  .why-card,
  .contact-card {
    padding: 24px 20px;
  }

  .legal-hero h1 {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 19px;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.5;
  }
}
