@font-face {
  font-family: "LINE Seed TW";
  src: local("LINE Seed TW"), local("LINE Seed Sans TW"), local("LINE Seed Sans TC"), local("LINE Seed Sans Traditional Chinese");
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed EN";
  src: local("LINE Seed EN"), local("LINE Seed Sans EN"), local("LINE Seed Sans"), local("LINE Seed");
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed JP";
  src: local("LINE Seed JP"), local("LINE Seed Sans JP"), local("LINE Seed Sans Japanese");
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed KR";
  src: local("LINE Seed KR"), local("LINE Seed Sans KR"), local("LINE Seed Sans Korean");
  font-display: swap;
}

@font-face {
  font-family: "LINE Seed TH";
  src: local("LINE Seed TH"), local("LINE Seed Sans TH"), local("LINE Seed Sans Thai");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --font-tw: "LINE Seed TW", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-en: "LINE Seed EN", "Inter", "Arial", system-ui, sans-serif;
  --font-jp: "LINE Seed JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-kr: "LINE Seed KR", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --font-th: "LINE Seed TH", "Noto Sans Thai", "Tahoma", system-ui, sans-serif;
  --font: var(--font-tw);
  --bg: #070910;
  --bg-2: #101523;
  --ink: #f7fbff;
  --muted: #aab8c8;
  --line: rgba(255, 255, 255, .16);
  --cyan: #00adee;
  --lime: #b7ff44;
  --pink: #ff4fd8;
  --amber: #ffd166;
  --panel: rgba(12, 18, 32, .78);
  --shadow: 0 24px 60px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

body[data-lang="zh"],
body[data-lang="zh-cn"] {
  --font: var(--font-tw);
}

body[data-lang="en"],
body[data-lang="id"],
body[data-lang="vi"] {
  --font: var(--font-en);
}

body[data-lang="ja"] {
  --font: var(--font-jp);
}

body[data-lang="ko"] {
  --font: var(--font-kr);
}

body[data-lang="th"] {
  --font: var(--font-th);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

html::before,
html::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: 42;
  pointer-events: none;
  background: #000;
}

html::before {
  top: 0;
  height: 96px;
}

html::after {
  bottom: 0;
  height: 58px;
}

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

button {
  font: inherit;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 60;
  background: rgba(255, 255, 255, .08);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--pink));
}

.site-header {
  position: fixed;
  top: 14px;
  left: 18px;
  right: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 112px;
  height: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(0,0,0,.34);
}

.header-nav + .lang-switch {
  margin-left: 0;
}

.header-nav a,
.lang-switch button,
.primary-action,
.ghost-action {
  border-radius: 8px;
}

.header-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a:hover,
.header-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, .09);
}

.lang-switch {
  position: relative;
  margin-left: 0;
}

.lang-current,
.lang-menu button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 94px;
  min-height: 40px;
  padding: 8px 10px;
}

.lang-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #061018;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 128px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 10, 18, .96);
  box-shadow: var(--shadow);
}

.lang-switch.is-open .lang-menu {
  display: grid;
  gap: 6px;
}

.lang-menu button {
  min-height: 36px;
  text-align: left;
  padding: 7px 10px;
}

.lang-menu button.is-active {
  color: #061018;
  border-color: transparent;
  background: var(--cyan);
}

.side-nav {
  position: fixed;
  z-index: 40;
  right: 20px;
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.side-nav a {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.side-nav a.is-active {
  background: var(--lime);
  border-color: var(--lime);
}

.page-count {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.page-count span:first-child {
  color: var(--cyan);
  font-size: 16px;
}

.page-count span {
  font-size: 12px;
}

.deck-date,
.deck-department,
.deck-version,
.deck-copyright {
  position: fixed;
  z-index: 44;
  bottom: 18px;
  color: rgba(247, 251, 255, .64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
}

.deck-date {
  left: 22px;
}

.deck-department {
  left: 104px;
}

.deck-version {
  left: 248px;
}

.deck-copyright {
  left: 50%;
  max-width: min(520px, calc(100vw - 220px));
  text-align: center;
  transform: translateX(-50%);
}

.viewport-warning {
  display: none;
}

@media (max-width: 999px) {
  body {
    overflow: hidden;
  }

  .viewport-warning {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    padding: 28px;
    color: #fff;
    background:
      radial-gradient(circle at 50% 34%, rgba(0,173,238,.22), transparent 32%),
      linear-gradient(135deg, rgba(4,9,17,.98), rgba(7,13,24,.98));
    text-align: center;
  }

  .viewport-warning strong {
    color: var(--cyan);
    font-size: clamp(30px, 8vw, 54px);
    font-weight: 900;
    line-height: 1.15;
  }

  .viewport-warning span {
    color: rgba(255,255,255,.88);
    font-size: clamp(18px, 4.8vw, 28px);
    font-weight: 800;
  }
}

.slide {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 108px 72px 52px;
  isolation: isolate;
}

.slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.band {
  background:
    linear-gradient(110deg, rgba(51,225,255,.13), transparent 38%),
    linear-gradient(250deg, rgba(255,79,216,.12), transparent 42%),
    var(--bg-2);
}

.slide-inner {
  display: flex;
  min-height: calc(100vh - 214px);
  flex-direction: column;
  width: min(1200px, 100%);
  margin: 0 auto;
}

#ecosystem .portfolio-table,
#mycard .mycard-metrics,
#hot-games .hotgame-grid,
#retail .retail-grid,
#online .retail-grid,
#payment-methods .payment-method-grid,
#global-service .world-map-wrap,
#offline-growth .growth-card-grid,
#hybrid-experience .hybrid-grid,
#hybrid-overview .full-slide-image,
#group-map .full-slide-image,
#market-overview .market-grid,
#taiwan-market .taiwan-market-layout,
#efun-service .efun-grid,
#efun-partners .efun-grid,
#cooperation .hybrid-grid {
  margin-top: 5vh;
  margin-bottom: 0;
}

#opportunity,
#ecosystem,
#mycard {
  place-items: start center;
  padding-top: 128px;
}

#opportunity .slide-inner,
#ecosystem .slide-inner,
#mycard .slide-inner {
  align-self: start;
}

#opportunity .slide-inner {
  min-height: 0;
}

#opportunity h2,
#ecosystem h2,
#mycard h2,
#opportunity .lead,
#mycard .lead {
  max-width: none;
}

#opportunity h2 {
  white-space: pre-line;
}

#opportunity .split,
#mycard .split.reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

#opportunity .split {
  align-content: start;
  gap: 0;
}

#opportunity .metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  margin-top: 5vh;
}

#opportunity .metric {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#mycard .image-stack {
  display: none;
}

#mycard .mycard-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

#mycard .metric {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#mycard .metric strong {
  font-size: clamp(26px, 4.2vw, 52px);
}

#mycard .metric .metric-plus {
  display: inline-block;
  font-size: .5em;
  line-height: 1;
  vertical-align: super;
}

#mycard .metric > span:last-child {
  font-size: 14px;
  white-space: nowrap;
}

.metric-image {
  width: 150px;
  height: 150px;
  margin-bottom: 12px;
  object-fit: contain;
}

#retail,
#online,
#payment-methods,
#global-service,
#offline-growth,
#hybrid-experience,
#hybrid-overview,
#hot-games,
#group-map,
#market-overview,
#taiwan-market,
#efun-service,
#efun-partners,
#cooperation {
  place-items: start center;
  padding-top: 128px;
}

#retail .slide-inner,
#online .slide-inner,
#payment-methods .slide-inner,
#global-service .slide-inner,
#offline-growth .slide-inner,
#hybrid-experience .slide-inner,
#hybrid-overview .slide-inner,
#hot-games .slide-inner,
#group-map .slide-inner,
#market-overview .slide-inner,
#taiwan-market .slide-inner,
#efun-service .slide-inner,
#efun-partners .slide-inner,
#cooperation .slide-inner {
  align-self: start;
}

#retail h2,
#retail .lead,
#online h2,
#online .lead,
#payment-methods h2,
#global-service h2,
#global-service .lead,
#offline-growth h2,
#offline-growth .lead,
#hybrid-experience h2,
#hybrid-experience .lead,
#hybrid-overview h2,
#hybrid-overview .lead,
#hot-games h2,
#hot-games .lead,
#group-map h2,
#market-overview h2,
#market-overview .lead,
#taiwan-market h2,
#taiwan-market .lead,
#efun-service h2,
#efun-service .lead,
#efun-partners h2,
#efun-partners .lead,
#cooperation h2,
#cooperation .lead {
  max-width: none;
}

.full-slide-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 280px);
  margin-top: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.retail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.retail-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  aspect-ratio: 1;
  min-height: 0;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.retail-card img {
  width: min(177px, 88%);
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin-bottom: 2px;
  border-radius: 8px;
}

.retail-card img[hidden] + span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 96px;
  color: var(--cyan);
  font-size: 22px;
}

.retail-card span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.hotgame-card img {
  border-radius: 8px;
}

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

.cooperation-card {
  justify-content: center;
  min-height: 520px;
  padding: 16px;
}

.cooperation-card h3 {
  font-size: clamp(26px, 3vw, 40px);
}

#cooperation .hybrid-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, .7fr) minmax(0, 1.1fr);
}

#cooperation .hybrid-card-media {
  height: min(52vh, 360px);
  margin-bottom: 18px;
}

#cooperation .hybrid-card-image img {
  width: min(180px, 50%);
  max-height: 180px;
}

.payment-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-method-card {
  gap: 6px;
}

.payment-svg-wrap {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0;
  color: inherit;
  font-size: initial;
  font-weight: initial;
  line-height: 1;
  white-space: normal;
}

.payment-svg {
  display: block;
  width: 150px;
  height: 150px;
  overflow: visible;
}

.payment-method-image {
  display: block;
  width: min(177px, 88%);
  aspect-ratio: 1;
  object-fit: contain;
}

.payment-method-card > span:last-child {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.payment-summary {
  display: grid;
  grid-column: 4;
  grid-row: 1 / span 2;
  align-content: center;
  justify-items: start;
  min-height: 100%;
  padding: 10px 6px 10px 18px;
  border-left: 4px solid var(--cyan);
}

.payment-summary strong {
  display: block;
  color: var(--amber);
  font-size: clamp(58px, 6vw, 92px);
  line-height: .95;
}

.payment-summary strong .metric-number,
.payment-summary strong .metric-plus {
  color: var(--amber);
}

.payment-summary strong .metric-plus {
  display: inline-block;
  font-size: .5em;
  line-height: 1;
  vertical-align: super;
}

.payment-summary > span {
  max-width: 210px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
}

.world-map-wrap {
  display: block;
  width: 100%;
}

.world-map {
  position: relative;
  height: min(720px, calc(100vh - 235px));
  min-height: 560px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 76% 50%, rgba(0,173,238,.16), transparent 28%),
    radial-gradient(circle at 30% 68%, rgba(255,79,216,.12), transparent 26%);
  background-size:
    100% 25%,
    12.5% 100%,
    auto,
    auto;
  box-shadow: none;
}

.world-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: .98;
}

.map-land {
  fill: rgba(255,255,255,.12);
  stroke: rgba(255,255,255,.28);
  stroke-width: 2;
}

.map-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: 180px;
  padding: 5px 9px 5px 22px;
  border: 1px solid rgba(0,173,238,.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(3,12,22,.78);
  box-shadow: 0 0 22px rgba(0,173,238,.24);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  transform: translate(-11px, -50%);
  white-space: normal;
}

.map-marker::before,
.map-marker::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-marker::before {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,173,238,.18);
}

.map-marker::after {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0,173,238,.55);
}

.marker-taiwan { left: 82.9%; top: 44.2%; }
.marker-china { left: 80.0%; top: 38.2%; }
.marker-philippines { left: 83.8%; top: 50.0%; }
.marker-sgmy { left: 78.8%; top: 58.8%; }
.marker-vietnam { left: 78.5%; top: 49.3%; }
.marker-thailand { left: 77.4%; top: 51.8%; }
.marker-indonesia { left: 81.9%; top: 61.8%; }
.marker-latam { left: 27.2%; top: 66.0%; }

.marker-philippines,
.marker-sgmy,
.marker-vietnam,
.marker-thailand,
.marker-indonesia {
  border-color: rgba(183,255,68,.72);
}

.marker-philippines::before,
.marker-sgmy::before,
.marker-vietnam::before,
.marker-thailand::before,
.marker-indonesia::before {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183,255,68,.18);
}

.marker-philippines::after,
.marker-sgmy::after,
.marker-vietnam::after,
.marker-thailand::after,
.marker-indonesia::after {
  border-color: rgba(183,255,68,.55);
}

.marker-latam {
  border-color: rgba(255,79,216,.78);
}

.marker-latam::before {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,79,216,.2);
}

.marker-latam::after {
  border-color: rgba(255,79,216,.6);
}

.world-market-list {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 18px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.world-market-list span {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hybrid-overview-image {
  width: 100%;
  max-height: calc(100vh - 300px);
  align-self: stretch;
  object-fit: contain;
}

.efun-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.efun-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  aspect-ratio: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(0,173,238,.18), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.efun-card img {
  display: block;
  width: min(174px, 82%);
  aspect-ratio: 1;
  object-fit: contain;
}

#efun-partners .efun-card img {
  border-radius: 8px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.32));
}

.efun-card img[hidden] + span {
  display: grid;
  place-items: center;
  min-height: 112px;
  color: var(--cyan);
  font-size: 24px;
}

.efun-card span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.efun-slogan {
  width: 100%;
  margin-top: 28px;
}

.growth-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.growth-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 12px;
  align-content: start;
  min-height: 0;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.growth-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.growth-card .growth-logo {
  width: min(100%, 317px);
  height: 78px;
  aspect-ratio: auto;
  justify-self: center;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.growth-card img[hidden] {
  display: none;
}

.growth-card > span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  color: #061018;
  background: var(--cyan);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.growth-card-event > span {
  background: #00adee;
}

.growth-card-retail > span {
  background: #ff4fd8;
}

.growth-card-studio > span {
  background: #b7ff44;
}

.growth-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
}

.growth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  min-height: 430px;
  margin-top: 34px;
}

.hybrid-card {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.hybrid-card-framed {
  align-self: stretch;
  min-height: 460px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hybrid-card-image {
  min-height: 360px;
  padding: 0;
  background: transparent;
}

.hybrid-card-image img {
  width: min(360px, 100%);
  max-height: 360px;
  object-fit: contain;
}

.hybrid-card-media {
  width: 100%;
  height: 190px;
  margin: 0 0 20px;
  border-radius: 8px;
  object-fit: cover;
}

.hybrid-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 11px 18px;
  border-radius: 6px;
  color: #fff;
  background: #00adee;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.hybrid-card-virtual > span {
  background: #ff4fd8;
}

.hybrid-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 30px);
}

.hybrid-card h3 .metric-number {
  color: var(--amber);
}

.hybrid-card h3 .metric-plus {
  display: inline-block;
  color: var(--amber);
  font-size: .5em;
  line-height: 1;
  vertical-align: super;
}

.hybrid-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.market-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  align-content: end;
  min-height: 440px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0,173,238,.18), transparent 42%),
    rgba(255,255,255,.075);
  box-shadow: var(--shadow);
  text-align: center;
}

.market-card img {
  align-self: end;
  justify-self: center;
  width: min(78%, 240px);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.32));
}

.market-card > span {
  justify-self: center;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #061018;
  background: var(--cyan);
  font-size: 18px;
  font-weight: 900;
}

.market-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.market-card h3 .metric-number,
.market-card h3 .metric-plus,
.market-card h3 .metric-unit {
  color: var(--amber);
}

.market-card h3 .metric-plus {
  display: inline-block;
  font-size: .5em;
  line-height: 1;
  vertical-align: super;
}

.market-card h3 .metric-suffix {
  display: inline-block;
  margin-left: 2px;
  color: var(--ink);
  font-size: .58em;
  line-height: 1;
  vertical-align: baseline;
}

.market-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.market-card-asia > span {
  color: var(--ink);
  background: var(--pink);
}

.market-card-taiwan > span {
  background: var(--lime);
}

.taiwan-market-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, .86fr) minmax(360px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.taiwan-stat-card {
  grid-template-rows: auto auto auto auto;
  align-content: center;
  min-height: 430px;
}

.taiwan-pie-card {
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: center;
  min-height: 430px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.taiwan-pie-card > span {
  color: #fff;
}

.pie-chart {
  justify-self: center;
  width: min(250px, 78%);
  aspect-ratio: 1;
  margin: 16px 0 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(10,14,25,1) 0 34%, transparent 35%),
    conic-gradient(var(--cyan) 0 54.8%, var(--pink) 54.8% 77.6%, var(--lime) 77.6% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 22px 42px rgba(0,0,0,.28);
}

.pie-legend {
  display: grid;
  gap: 10px;
}

.pie-legend div {
  position: relative;
  display: grid;
  grid-template-columns: 42px auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  text-align: left;
}

.pie-legend div:nth-child(2) {
  border-left-color: var(--pink);
}

.pie-legend div:nth-child(3) {
  border-left-color: var(--lime);
}

.pie-legend img {
  width: 42px;
  height: 42px;
  margin: 0;
  filter: none;
}

.pie-legend strong {
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.pie-legend div:nth-child(2) strong {
  color: var(--pink);
}

.pie-legend div:nth-child(3) strong {
  color: var(--lime);
}

.pie-legend span {
  color: #fff;
  font-weight: 800;
}

.market-source {
  align-self: end;
  margin: 10px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.market-slogan {
  position: relative;
  margin: 28px 0 0;
  padding: 22px 28px;
  border: 1px solid rgba(0,173,238,.5);
  border-left: 8px solid var(--cyan);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0,173,238,.26), rgba(255,212,0,.13) 48%, rgba(255,79,216,.14)),
    rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(0,173,238,.12);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
}

.eyebrow {
  display: none;
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 920px;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 26px);
}

.hero-slide {
  overflow: hidden;
  background: var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .68fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.cover-visual {
  display: grid;
  place-items: center;
  justify-items: end;
  min-height: 380px;
  transform: translateX(64px);
}

.cover-visual img {
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 26px 54px rgba(0, 173, 238, .22));
}

.hero-copy h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(44px, 6.4vw, 88px);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.primary-action {
  color: #061018;
  background: var(--lime);
}

.ghost-action {
  color: var(--ink);
  background: rgba(255,255,255,.08);
  border-color: var(--line);
}

.metric-grid,
.service-grid,
.proof-row,
.next-grid {
  display: grid;
  gap: 14px;
}

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

.metric,
.service-grid article,
.timeline article,
.proof-row article,
.next-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 164px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  color: var(--cyan);
  background: transparent;
  box-shadow: none;
}

.metric-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon .coloredSvg {
  width: 150px;
  height: 150px;
  fill: initial;
  stroke: initial;
  stroke-width: initial;
  stroke-linecap: initial;
  stroke-linejoin: initial;
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.metric .metric-plus {
  display: inline-block;
  font-size: .5em;
  line-height: 1;
  vertical-align: super;
}

.metric span,
.service-grid p,
.timeline p,
.proof-row p,
.next-grid p {
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.portfolio-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  margin-top: 34px;
}

.portfolio-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.portfolio-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.portfolio-row {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: start;
  align-self: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-row h3 {
  display: flex;
  align-items: center;
  margin: 0;
}

.group-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 18px;
  border-radius: 8px;
  color: #061018;
  background: var(--cyan);
  font-weight: 900;
  text-align: center;
}

.portfolio-row-game .group-badge {
  background: #ffd400;
}

.portfolio-row-marketing .group-badge {
  color: var(--ink);
  background: #2fa6bf;
}

.portfolio-row-fintech .group-badge {
  color: var(--ink);
  background: #ff174d;
}

.portfolio-row-cloud .group-badge {
  color: #061018;
  background: #00adee;
}

.portfolio-row-culture .group-badge {
  color: #061018;
  background: #f2f4f8;
}

.portfolio-subgroup {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}

.portfolio-subgroup h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 0;
  padding: 12px;
  border-radius: 8px;
  color: #061018;
  background: #00adee;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
}

.portfolio-row-culture h4 {
  background: #f2f4f8;
}

.portfolio-spacer {
  min-height: 1px;
}

.portfolio-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.portfolio-fields > div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.portfolio-item {
  display: grid;
  gap: 12px;
}

.portfolio-fields span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.portfolio-fields p {
  margin: 0;
  color: var(--ink);
}

.brand-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
  width: 100%;
}

.brand-chips b {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 100px;
  padding: 12px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 173, 238, .14);
  font-weight: 800;
  text-align: center;
}

.brand-chips img {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,.9);
}

.brand-chips b > span {
  min-width: 0;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0;
}

#ecosystem .brand-chips b > span {
  font-size: 13px;
}

#ecosystem .brand-chips {
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}

#ecosystem .brand-chips b {
  min-height: 88px;
  padding: 10px 8px;
  gap: 5px;
  font-size: 13px;
}

#ecosystem .brand-chips img {
  width: 58px;
  height: 58px;
}

.service-grid article {
  min-height: 250px;
  padding: 22px;
}

.service-grid span,
.next-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 6px;
  color: #061018;
  background: var(--cyan);
  font-weight: 900;
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.image-stack img {
  position: absolute;
  width: 260px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(1) {
  left: 7%;
  top: 10%;
}

.image-stack img:nth-child(2) {
  right: 5%;
  top: 2%;
  transform: rotate(7deg);
}

.image-stack img:nth-child(3) {
  left: 33%;
  bottom: 0;
  transform: rotate(-6deg);
}

.pill-row,
.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-row span,
.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.08);
  font-weight: 800;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.flow article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.075);
}

.flow article + article::before {
  content: "→";
  position: absolute;
  left: -24px;
  top: 50%;
  color: var(--lime);
  font-size: 32px;
  font-weight: 900;
  transform: translateY(-50%);
}

.flow strong {
  display: block;
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 28px;
}

.flow span {
  color: var(--muted);
  font-size: 20px;
}

.ticker {
  margin-top: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.timeline article {
  min-height: 250px;
  padding: 22px;
}

.timeline article > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--lime);
  font-weight: 900;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.accordion button {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.accordion button[aria-expanded="true"] {
  color: #061018;
  background: var(--amber);
}

.accordion div {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.accordion p {
  margin: 0;
  color: var(--muted);
}

.proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.proof-row article {
  min-height: 220px;
  padding: 24px;
}

.final {
  text-align: center;
}

.final h2,
.final .lead {
  margin-left: auto;
  margin-right: auto;
}

.next-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  text-align: left;
}

.next-grid article {
  min-height: 170px;
  padding: 22px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.66);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  width: min(640px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 14, 25, .97);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.modal-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.modal-close {
  float: right;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 980px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .brand span,
  .header-nav {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  #opportunity,
  #ecosystem,
  #mycard,
  #hot-games,
  #retail,
  #online,
  #payment-methods,
  #global-service,
  #offline-growth,
  #hybrid-experience,
  #hybrid-overview,
  #group-map,
  #market-overview,
  #taiwan-market,
  #efun-service,
  #efun-partners,
  #cooperation {
    padding-top: 104px;
  }

  .slide {
    padding: 104px 22px 42px;
  }

  .slide-inner {
    min-height: auto;
  }

  .split,
  .split.reverse,
  .service-grid,
  .portfolio-table,
  .portfolio-secondary,
  .portfolio-row,
  .portfolio-fields,
  .growth-card-grid,
  .hybrid-grid,
  .efun-grid,
  .market-grid,
  .taiwan-market-layout,
  .world-map-wrap,
  .flow,
  .timeline,
  .proof-row,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-spacer {
    display: none;
  }


  .retail-grid,
  .payment-method-grid,
  .efun-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-summary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }

  .metric-grid,
  #opportunity .metric-grid,
  #mycard .mycard-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .side-nav {
    display: none;
  }

  .flow article + article::before {
    content: "↓";
    left: 24px;
    top: -28px;
    transform: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cover-visual {
    min-height: auto;
    justify-items: start;
    transform: none;
  }

  .cover-visual img {
    width: min(72vw, 300px);
  }

  .deck-date,
  .deck-department,
  .deck-version,
  .deck-copyright {
    bottom: 12px;
    font-size: 10px;
  }

  .deck-date {
    left: 14px;
  }

  .deck-department {
    left: 88px;
  }

  .deck-version {
    left: 214px;
  }

  .deck-copyright {
    max-width: calc(100vw - 160px);
  }

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

  .image-stack {
    min-height: 340px;
  }

  .image-stack img {
    width: 190px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 8px;
    left: 0;
    right: 0;
    top: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 86px;
  }

  .lang-current {
    min-width: 78px;
  }

  #opportunity,
  #ecosystem,
  #mycard,
  #hot-games,
  #retail,
  #online,
  #payment-methods,
  #global-service,
  #offline-growth,
  #hybrid-experience,
  #hybrid-overview,
  #group-map,
  #market-overview,
  #taiwan-market,
  #efun-service,
  #efun-partners,
  #cooperation {
    padding-top: 96px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .metric-grid,
  #opportunity .metric-grid,
  #mycard .mycard-metrics {
    grid-template-columns: 1fr;
  }

  .metric,
  .service-grid article,
  .timeline article,
  .proof-row article,
  .next-grid article {
    min-height: auto;
  }

  .retail-grid,
  .payment-method-grid,
  .growth-card-grid,
  .hybrid-grid,
  .efun-grid,
  .market-grid,
  .taiwan-market-layout,
  .world-map-wrap {
    grid-template-columns: 1fr;
  }

  .world-map {
    height: auto;
    min-height: 420px;
  }

  .payment-summary {
    min-height: auto;
    padding: 18px;
  }

  .growth-card,
  .taiwan-stat-card,
  .taiwan-pie-card {
    min-height: auto;
  }

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

  .hybrid-grid {
    min-height: auto;
  }

  .hybrid-card-framed,
  .hybrid-card-image {
    height: auto;
    min-height: auto;
  }
}
