:root {
  --primary: #CD6E9A;
  --primary-dark: #B85A85;
  --bg: #FFF6F9;
  --bg-soft: #FFE9F1;
  --card: #ffffff;
  --text: #2A1F2A;
  --text-secondary: #7C6A78;
  --border: rgba(205, 110, 154, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Maru Gothic ProN", "Hiragino Sans", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding: 0 16px;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }

.press-header {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 0 24px;
  text-align: center;
}
.press-header .home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
}
.press-header .icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(205, 110, 154, 0.25);
}
.press-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.press-header .tagline {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}
.press-header .stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.press-header .stores a {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}
.press-header .stores a:hover { background: var(--primary-dark); }

main.press {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 0 80px;
}
main.press section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}
main.press h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  border-left: 5px solid var(--primary);
  padding-left: 14px;
}
main.press h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--text);
}
main.press h3:first-child { margin-top: 0; }
main.press p { margin-bottom: 12px; color: var(--text); }
main.press ul, main.press ol {
  margin: 0 0 12px 24px;
  color: var(--text);
}
main.press li { margin-bottom: 6px; }
main.press table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
main.press th, main.press td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
main.press th {
  background: var(--bg-soft);
  font-weight: 700;
  width: 35%;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
}
main.press tr:last-child th, main.press tr:last-child td { border-bottom: none; }

.boilerplate {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 20px 20px 20px 20px;
  border-radius: 12px;
  font-size: 14px;
  position: relative;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.boilerplate p {
  padding-right: 90px;
  margin-bottom: 0;
}
.boilerplate p:not(:last-child) {
  margin-bottom: 12px;
}
.boilerplate .copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  border: 0;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.boilerplate .copy-btn:hover { background: var(--primary-dark); }

.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.asset-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s;
}
.asset-card:hover { transform: translateY(-4px); }
.asset-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
}
.asset-card .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.asset-card .meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.asset-card .dl {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
}
.asset-card .dl:hover { background: var(--primary-dark); color: white; }

.zip-cta {
  text-align: center;
  margin-top: 24px;
}
.zip-cta a {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 14px;
  font-weight: 800;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(205, 110, 154, 0.3);
}
.zip-cta a:hover { box-shadow: 0 6px 24px rgba(205, 110, 154, 0.4); transform: translateY(-2px); }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.screenshots-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-card {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-style: italic;
}
.quote-card .author {
  font-style: normal;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.contact-block .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.press-social {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 0 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.press-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.press-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.press-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.press-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 0 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
}
.press-footer a {
  color: var(--text-secondary);
}
.press-footer a:hover { color: var(--primary); }
.press-footer .copy {
  width: 100%;
  text-align: center;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 8px;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lang-switcher::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--primary);
  border-radius: 100px;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
  z-index: 0;
}
.lang-switcher.lang-en::before { transform: translateX(100%); }
.lang-switcher:hover::before { background: var(--primary-dark); }
.lang-switcher.lang-ja:has(a[data-lang="en"]:hover)::before { transform: translateX(100%); }
.lang-switcher.lang-en:has(a[data-lang="ja"]:hover)::before { transform: translateX(0); }
.lang-switcher a {
  position: relative;
  z-index: 1;
  padding: 6px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  min-width: 38px;
}
.lang-switcher.lang-ja a[data-lang="ja"],
.lang-switcher.lang-en a[data-lang="en"] { color: white; }
