﻿:root {
  --bg: #fff0f5;
  --surface: #ffffff;
  --surface-soft: #f3e5f5;
  --pink: #ff8da1;
  --hot: #ff4081;
  --mint: #b2dfdb;
  --honey: #ffd54f;
  --ink: #4a2e2b;
  --text: #6d4c41;
  --muted: #8a6b61;
  --line: rgba(255, 141, 161, 0.32);
  --shadow: 0 18px 45px rgba(255, 64, 129, 0.16);
  --shadow-soft: 0 10px 28px rgba(109, 76, 65, 0.12);
  --shadow-hover: 0 22px 52px rgba(255, 64, 129, 0.22);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    repeating-linear-gradient(135deg, rgba(178, 223, 219, 0.2) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #fff0f5 0%, #fff7fb 44%, #f3e5f5 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.85rem);
  max-width: 760px;
  color: var(--hot);
  text-shadow: 0 3px 0 rgba(255, 213, 79, 0.34), 0 12px 28px rgba(255, 64, 129, 0.22);
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  color: #b63367;
}

h3 {
  font-size: 1.16rem;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 200;
  background: var(--hot);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 240, 245, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 141, 161, 0.22);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-elevated {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.92);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(255, 64, 129, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: max-content;
  padding: 0.62rem 0.9rem;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--surface-soft);
  color: var(--hot);
  box-shadow: 0 8px 18px rgba(255, 64, 129, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.nav-links .nav-download {
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 64, 129, 0.22);
}

.nav-links .nav-download:hover,
.nav-links .nav-download:focus-visible {
  background: var(--honey);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--hot);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 7rem) 0 3rem;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 240, 245, 0.96) 0 40%, rgba(243, 229, 245, 0.78) 40% 100%),
    url("img/cover.webp") center / cover no-repeat;
  opacity: 0.96;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-shell,
.section-shell {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

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

.eyebrow {
  color: var(--hot);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.hero-lead {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.78rem 1.12rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: var(--hot);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 64, 129, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--honey);
  color: var(--ink);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.hero-facts div,
.stat-panel div,
.timeline article,
.guide-list article,
.feature-card,
.quick-grid a,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-facts div {
  padding: 0.8rem;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-media {
  margin: 0;
  align-self: stretch;
}

.hero-media img,
.media-frame img,
.feature-card img,
.gallery-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-media img {
  aspect-ratio: 616 / 353;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, 0.86);
}

figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-index {
  padding: 1.5rem 0 0;
  scroll-margin-top: 92px;
}

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

.quick-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  min-height: 122px;
  padding: 1rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.quick-grid .icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--hot);
}

.quick-grid a:hover,
.quick-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--hot);
  outline: none;
}

.quick-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.quick-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.content-band {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  scroll-margin-top: 92px;
}

.content-band.soft {
  background:
    repeating-linear-gradient(90deg, rgba(178, 223, 219, 0.16) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, rgba(243, 229, 245, 0.72), rgba(255, 255, 255, 0.42));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.split-section.reverse .section-copy {
  order: 2;
}

.section-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

.media-frame {
  margin: 0;
}

.media-frame img {
  aspect-ratio: 600 / 337;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

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

.game-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.game-content-grid article {
  min-height: 260px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.game-content-grid .icon {
  width: 2rem;
  height: 2rem;
  padding: 0.36rem;
  margin-bottom: 0.85rem;
  color: var(--hot);
  background: var(--surface-soft);
  border-radius: 50%;
}

.game-content-grid h3 {
  margin-bottom: 0.55rem;
}

.game-content-grid p {
  margin-bottom: 0;
}

.feature-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card h3,
.feature-card p {
  padding-inline: 1rem;
}

.feature-card h3 {
  margin-top: 1rem;
}

.feature-card p {
  margin-top: 0.55rem;
  padding-bottom: 1rem;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-panel div {
  min-height: 145px;
  padding: 1.2rem;
}

.stat-panel strong {
  display: block;
  color: var(--hot);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.guide-list article {
  position: relative;
  padding: 1.15rem;
  min-height: 230px;
}

.guide-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
}

.guide-list h3 {
  margin-bottom: 0.55rem;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 1rem;
  align-items: center;
}

.gallery-track {
  min-height: 440px;
}

.gallery-slide {
  display: none;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.gallery-slide.is-active {
  display: block;
  animation: fadeSlide 0.24s ease;
}

.gallery-slide img {
  aspect-ratio: 16 / 9;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--hot);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-btn .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  background: var(--hot);
  color: #fff;
  outline: none;
}

.gallery-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 64, 129, 0.25);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(255, 64, 129, 0.42);
  cursor: pointer;
}

.gallery-dots button[aria-current="true"] {
  width: 34px;
  background: var(--hot);
  color: #fff;
}

.gallery-dots .icon {
  width: 0.8rem;
  height: 0.8rem;
}

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

.timeline article {
  padding: 1.15rem;
}

.timeline time {
  display: block;
  color: var(--hot);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.timeline h3 {
  margin-bottom: 0.55rem;
}

.source-link {
  display: inline-flex;
  margin-top: 0.3rem;
  color: var(--hot);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 64, 129, 0.35);
}

.source-link:hover,
.source-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.95rem 1.05rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--hot);
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.cta-band {
  padding: clamp(2.5rem, 7vw, 4rem) 0;
  background: linear-gradient(135deg, var(--hot), var(--pink) 52%, var(--honey));
  color: #fff;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band p {
  max-width: 740px;
  margin-bottom: 0;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--hot);
}

.friend-links {
  padding: clamp(2.4rem, 6vw, 3.8rem) 0;
  background:
    repeating-linear-gradient(135deg, rgba(178, 223, 219, 0.22) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, var(--surface-soft), var(--bg));
  border-top: 1px solid rgba(255, 141, 161, 0.2);
}

.friend-links-shell {
  text-align: center;
}

.friend-links h2 {
  margin-bottom: 1.3rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.friend-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
}

.friend-links-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 1.12rem;
  border: 1px solid rgba(255, 141, 161, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(109, 76, 65, 0.1);
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.friend-links-list a:hover,
.friend-links-list a:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  background: var(--hot);
  border-color: var(--hot);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.site-footer {
  padding: 2rem 0;
  background: #fff7fb;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-grid strong {
  color: var(--ink);
}

.footer-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--hot);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-shell,
  .split-section,
  .split-section.reverse,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .section-copy {
    order: 0;
  }

  .feature-grid,
  .game-content-grid,
  .guide-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  .quick-index,
  .content-band {
    scroll-margin-top: 82px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle.is-open {
    background: var(--surface-soft);
  }

  .nav-toggle.is-open span {
    background: var(--ink);
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-facts,
  .feature-grid,
  .game-content-grid,
  .guide-list,
  .timeline,
  .stat-panel,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    min-height: 0;
  }

  .gallery-btn {
    display: none;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 420px) {
  .nav-shell,
  .hero-shell,
  .section-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand span {
    max-width: 180px;
    overflow-wrap: anywhere;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Modern interaction layer */
.brand,
.brand img,
.btn,
.quick-grid a,
.game-content-grid article,
.feature-card,
.guide-list article,
.stat-panel div,
.timeline article,
.faq-list details,
.gallery-btn,
.gallery-dots button,
.source-link {
  transition-duration: 0.22s;
  transition-timing-function: ease;
}

.brand {
  transition-property: transform, color;
}

.brand img {
  transition-property: transform, box-shadow;
}

.brand:hover,
.brand:focus-visible {
  color: var(--hot);
  transform: translateY(-1px);
  outline: none;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(255, 64, 129, 0.3);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.48) 46%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 0.42s ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--hot);
  background: #fff;
}

.quick-grid a,
.game-content-grid article,
.feature-card,
.guide-list article,
.stat-panel div,
.timeline article,
.faq-list details {
  position: relative;
  overflow: hidden;
  transition-property: transform, border-color, box-shadow, background-color;
}

.quick-grid a::before,
.game-content-grid article::before,
.feature-card::before,
.guide-list article::before,
.stat-panel div::before,
.timeline article::before,
.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.12), rgba(178, 223, 219, 0.16));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.quick-grid a:hover,
.quick-grid a:focus-visible,
.game-content-grid article:hover,
.feature-card:hover,
.guide-list article:hover,
.stat-panel div:hover,
.timeline article:hover,
.faq-list details:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 129, 0.62);
  box-shadow: var(--shadow-hover);
  background-color: rgba(255, 255, 255, 0.94);
}

.quick-grid a:hover::before,
.quick-grid a:focus-visible::before,
.game-content-grid article:hover::before,
.feature-card:hover::before,
.guide-list article:hover::before,
.stat-panel div:hover::before,
.timeline article:hover::before,
.faq-list details:hover::before {
  opacity: 1;
}

.hero-media img,
.media-frame img,
.feature-card img,
.gallery-slide img {
  transition: transform 0.32s ease, filter 0.32s ease, box-shadow 0.32s ease;
}

.hero-media:hover img,
.media-frame:hover img {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.08);
}

.feature-card:hover img,
.gallery-slide:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.04);
}

.game-content-grid .icon,
.guide-list span {
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.game-content-grid article:hover .icon,
.guide-list article:hover span {
  transform: rotate(-7deg) scale(1.08);
  background: var(--hot);
  color: #fff;
}

.timeline article {
  border-left: 4px solid rgba(255, 64, 129, 0.35);
}

.timeline article:hover {
  border-left-color: var(--hot);
}

.source-link {
  transition-property: transform, color, border-color;
}

.source-link:hover,
.source-link:focus-visible {
  transform: translateX(3px);
}

.gallery-btn {
  transition-property: transform, background-color, color, box-shadow;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: var(--shadow-hover);
}

.gallery-dots button {
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, width 0.18s ease;
}

.gallery-dots button:hover,
.gallery-dots button:focus-visible {
  transform: translateY(-2px);
  color: var(--hot);
  outline: none;
}

.faq-list details[open] {
  border-color: rgba(255, 64, 129, 0.55);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.faq-list summary {
  transition: color 0.18s ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--hot);
  outline: none;
}

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  background: var(--honey);
  color: var(--ink);
}

