/* ============================================================
   7788dm.com · AI 短剧《夫妻游戏》专题样式
   Author: 7788dm Editorial · Build: 2026.05
   Description: Deep-optimized responsive stylesheet for the
   Marriage Game AI short-drama landing page.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --bg-0: #0c0a10;
  --bg-1: #14101a;
  --bg-2: #1c1626;
  --bg-card: #1a1521;
  --bg-card-2: #221a2c;
  --paper: #faf7f2;
  --paper-2: #f3ece0;
  --line: rgba(232, 201, 138, .18);
  --line-soft: rgba(232, 201, 138, .08);
  --text-0: #f7f1e6;
  --text-1: #d9cfb9;
  --text-2: #9a8f7a;
  --text-3: #6a6151;
  --gold: #e8c98a;
  --gold-2: #c9a25c;
  --gold-3: #8c6a32;
  --rose: #c25c6b;
  --plum: #6c2b4f;
  --ink: #14101a;
  --shadow-1: 0 2px 6px rgba(0, 0, 0, .25);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-3: 0 24px 60px rgba(0, 0, 0, .45);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .22s var(--ease);
  --t-mid: .45s var(--ease);
  --t-slow: .8s var(--ease);
  --container: 1280px;
  --container-narrow: 1080px;
  --font-sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "Source Han Serif SC", serif;
  --font-latin: "Cormorant Garamond", "Times New Roman", serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--bg-0);
  background-image:
    radial-gradient(1200px 600px at 80% -200px, rgba(232, 201, 138, .08), transparent 60%),
    radial-gradient(900px 500px at -100px 60%, rgba(194, 92, 107, .07), transparent 60%),
    linear-gradient(180deg, #0c0a10 0%, #110c18 30%, #14101a 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover, a:focus { color: var(--gold-2); }
button { font-family: inherit; cursor: pointer; }

/* Hide content visually but keep accessible */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  padding: 10px 18px; background: var(--gold); color: var(--ink);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; outline: 3px solid #fff; }

::selection { background: var(--gold); color: var(--ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-3), var(--gold-2)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 700; color: var(--text-0); line-height: 1.25; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; font-weight: 600; }
h6 { font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 700; color: var(--text-0); }
.hl { background: linear-gradient(transparent 62%, rgba(232, 201, 138, .32) 62%, rgba(232, 201, 138, .32) 92%, transparent 92%); padding: 0 .15em; color: var(--gold); font-weight: 600; }
.hl-r { color: var(--rose); font-weight: 600; }

/* ---------- 4. Layout helpers ---------- */
.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}
.section {
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
}
.section.alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .02), transparent); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------- 5. Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(16px, 3vw, 32px);
  background: rgba(12, 10, 16, .75);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--t-fast), padding var(--t-fast);
}
.navbar.scrolled { padding: 8px clamp(16px, 3vw, 32px); background: rgba(12, 10, 16, .92); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text-0); font-weight: 700; }
.brand:hover { color: var(--gold); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-3) 60%, #1a1410 100%);
  position: relative; box-shadow: 0 0 0 1px rgba(232, 201, 138, .25), 0 4px 12px rgba(0, 0, 0, .4);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; width: 9px; height: 9px;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .85); box-shadow: 0 0 8px rgba(255, 255, 255, .6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: .03em; }
.brand-name em { color: var(--gold); font-style: normal; padding: 0 2px; }
.brand-slogan { font-size: .7rem; letter-spacing: .25em; color: var(--text-2); text-transform: uppercase; }
.nav-links { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.nav-links a {
  position: relative; padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--text-1); font-size: .92rem; font-weight: 500; letter-spacing: .02em;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover, .nav-links a:focus, .nav-links a.active {
  color: var(--gold); background: rgba(232, 201, 138, .08);
}
.nav-links a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--rose));
}
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-0); margin: 4px 0; border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links { display: none; flex-direction: column; gap: 0; width: 100%; padding: 12px 0; border-top: 1px solid var(--line-soft); margin-top: 8px; }
  .navbar.open .nav-links { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: 0; }
  .nav-toggle { display: inline-flex; flex-direction: column; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../image/cover.jpg") center/cover no-repeat;
  filter: brightness(.42) saturate(1.05) contrast(1.08);
  transform: scale(1.06);
  animation: hero-pan 22s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12, 10, 16, .55) 0%, rgba(12, 10, 16, .85) 60%, var(--bg-0) 100%),
              radial-gradient(800px 400px at 75% 30%, rgba(232, 201, 138, .12), transparent 60%);
}
@keyframes hero-pan {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
.hero-inner { max-width: 980px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .8rem; letter-spacing: .14em; color: var(--gold);
  background: rgba(12, 10, 16, .6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 12px var(--rose); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.hero h1 { margin: 18px 0 8px; }
.hero h1 em { font-style: normal; color: var(--gold); background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub-en {
  font-family: var(--font-latin); font-style: italic; font-weight: 500;
  font-size: clamp(1rem, 1vw + .6rem, 1.3rem); color: var(--gold-2); margin-bottom: 12px;
  letter-spacing: .04em;
}
.hero-tagline {
  display: inline-block; padding: 10px 18px;
  border-left: 3px solid var(--gold); margin: 18px 0 22px;
  font-family: var(--font-serif); font-size: clamp(1.1rem, 1vw + .5rem, 1.45rem);
  color: var(--text-0); line-height: 1.5;
}
.hero-desc { max-width: 820px; font-size: 1.05rem; line-height: 1.85; color: var(--text-1); }
.hero-desc strong { color: var(--gold); }

.hero-stats {
  margin-top: 36px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; max-width: 720px;
}
.stat {
  background: linear-gradient(160deg, rgba(232, 201, 138, .08), rgba(194, 92, 107, .06));
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 16px; text-align: left;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.stat:hover { transform: translateY(-3px); border-color: var(--gold); }
.stat strong {
  display: block; font-family: var(--font-serif); font-size: 1.45rem;
  color: var(--gold); letter-spacing: .02em; line-height: 1.2;
}
.stat span { font-size: .82rem; color: var(--text-2); letter-spacing: .04em; }

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-tagline { padding-left: 14px; }
}

/* ---------- 7. Section heads ---------- */
.section-head {
  text-align: center; max-width: 760px; margin: 0 auto clamp(28px, 4vw, 56px);
}
.section-eyebrow {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .32em; color: var(--gold);
  border: 1px solid var(--line); background: rgba(232, 201, 138, .05);
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title { margin: 0 0 12px; }
.section-title span {
  background: linear-gradient(120deg, var(--gold) 0%, var(--rose) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  padding: 0 .15em;
}
.section-sub { color: var(--text-2); font-size: 1rem; margin: 0; letter-spacing: .04em; }

/* ---------- 8. Plot section ---------- */
.plot {
  display: grid; grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.plot-poster {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-3);
  aspect-ratio: 4 / 5;
}
.plot-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.plot-poster:hover img { transform: scale(1.05); }
.poster-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 22px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .85));
}
.poster-meta h3 { margin: 0; font-size: 1.35rem; }
.poster-meta p { margin: 4px 0 0; font-size: .82rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }

.plot-text h3 { margin-top: 0; }
.plot-text .meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  padding: 0; margin: 0 0 22px; list-style: none;
}
.plot-text .meta span {
  font-size: .85rem; padding: 4px 10px; border-radius: 4px;
  background: rgba(232, 201, 138, .08); border: 1px solid var(--line-soft);
  color: var(--text-1);
}
.plot-text p { color: var(--text-1); font-size: 1.02rem; }

.quote {
  margin: 28px 0 0; padding: 22px 24px;
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(110deg, rgba(232, 201, 138, .08), transparent 60%);
  font-family: var(--font-serif); font-style: italic; font-size: 1.08rem;
  color: var(--text-0);
}
.quote small { display: block; margin-top: 10px; font-style: normal; font-family: var(--font-sans); font-size: .82rem; color: var(--text-2); letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 880px) {
  .plot { grid-template-columns: 1fr; }
}

/* ---------- 9. Couple cards ---------- */
.couples { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.couple-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.couple-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-3); }
.cc-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.cc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); filter: saturate(.94); }
.couple-card:hover .cc-photo img { transform: scale(1.08); filter: saturate(1.1); }
.cc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 16, .5) 100%);
  pointer-events: none;
}
.cc-num {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12, 10, 16, .78); border: 1px solid var(--line);
  padding: 4px 10px; font-size: .72rem; letter-spacing: .15em;
  color: var(--gold); border-radius: 999px; backdrop-filter: blur(6px);
}
.cc-body { padding: 18px 20px 22px; flex: 1 1 auto; display: flex; flex-direction: column; gap: 8px; }
.cc-eyebrow { font-size: .7rem; letter-spacing: .22em; color: var(--gold-2); text-transform: uppercase; }
.cc-body h4 { margin: 2px 0 0; font-family: var(--font-serif); font-size: 1.18rem; color: var(--text-0); }
.cc-tagline { font-size: .85rem; color: var(--text-2); font-style: italic; margin: 0 0 6px; }
.cc-body p { font-size: .92rem; line-height: 1.7; color: var(--text-1); flex: 1; }
.cc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.cc-chips span {
  font-size: .72rem; padding: 3px 10px; border-radius: 999px;
  background: rgba(232, 201, 138, .08); color: var(--gold-2); border: 1px solid var(--line-soft);
}
.cc-chips.alt span { background: rgba(194, 92, 107, .12); color: #f0a8b3; border-color: rgba(194, 92, 107, .25); }

/* ---------- 10. Episode grid ---------- */
.episodes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.ep {
  position: relative; padding: 22px 22px 24px;
  border-radius: var(--radius-lg); background: linear-gradient(170deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line-soft);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.ep:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.ep-num {
  display: inline-block; font-family: var(--font-latin); font-style: italic;
  font-size: 1.6rem; color: var(--gold); font-weight: 500;
  letter-spacing: .02em; margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(232, 201, 138, .3);
}
.ep h4 { margin: 0 0 10px; font-size: 1.06rem; }
.ep p { font-size: .92rem; line-height: 1.72; color: var(--text-1); margin: 0 0 12px; }
.ep-key { display: flex; flex-wrap: wrap; gap: 6px; }
.ep-key span {
  font-size: .7rem; padding: 3px 10px; border-radius: 4px;
  background: rgba(232, 201, 138, .08); color: var(--text-1); border: 1px solid var(--line-soft);
  letter-spacing: .04em;
}

/* ---------- 11. Manor mechanics ---------- */
.manor {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.manor-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 5 / 4; box-shadow: var(--shadow-3);
}
.manor-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.manor-image:hover img { transform: scale(1.04); }
.manor-image::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 201, 138, .06) 0%, transparent 40%, rgba(194, 92, 107, .08) 100%);
  mix-blend-mode: overlay;
}
.manor-text h3 { margin-top: 0; }
.manor-text h3 span { color: var(--rose); }
.manor-text p { color: var(--text-1); font-size: 1.02rem; }
.manor-rules {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 10px;
}
.manor-rules li {
  position: relative; padding: 12px 16px 12px 44px;
  background: rgba(232, 201, 138, .04); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); font-size: .96rem; color: var(--text-1);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.manor-rules li:hover { border-color: var(--gold-2); background: rgba(232, 201, 138, .08); }
.manor-rules li::before {
  content: ""; position: absolute; left: 16px; top: 50%; width: 18px; height: 1px;
  background: var(--gold);
}
.manor-rules li strong { color: var(--gold); margin-right: 4px; }

@media (max-width: 880px) { .manor { grid-template-columns: 1fr; } }

/* ---------- 12. Theme grid ---------- */
.theme {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.theme-card {
  position: relative; padding: 24px 22px 26px;
  border-radius: var(--radius-lg); background: linear-gradient(170deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line-soft); overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.theme-card:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.theme-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(220px 120px at 100% 0, rgba(232, 201, 138, .12), transparent 70%);
}
.t-no {
  font-family: var(--font-latin); font-style: italic; font-size: 2.2rem;
  color: var(--gold); opacity: .25; line-height: 1; margin-bottom: 8px;
}
.theme-card h5 { margin: 4px 0 10px; font-size: 1.05rem; }
.theme-card p { font-size: .9rem; color: var(--text-1); margin: 0; line-height: 1.7; }

/* ---------- 13. Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 14px; grid-auto-rows: minmax(150px, auto);
}
.g { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-soft); background: var(--bg-card); }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow), filter var(--t-slow); filter: saturate(.92); }
.g:hover img { transform: scale(1.07); filter: saturate(1.1) brightness(1.05); }
.g::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 10, 16, .85) 100%);
}
.g.tall { grid-column: span 4; grid-row: span 2; }
.g.wide { grid-column: span 8; grid-row: span 2; }
.g.square { grid-column: span 4; grid-row: span 2; }
.g.med { grid-column: span 6; }
.g.small { grid-column: span 6; }

.g-caption {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  z-index: 2; color: #fff; font-size: .85rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
}
.g-num {
  display: inline-block; font-family: var(--font-latin); font-style: italic;
  color: var(--gold); margin-right: 6px; font-size: .95rem;
}

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g.tall, .g.wide, .g.square, .g.med, .g.small { grid-column: span 6; grid-row: span 2; }
}

/* ---------- 14. Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.review {
  padding: 22px; border-radius: var(--radius-lg); background: var(--bg-card);
  border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.review:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.rv-score {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.rv-score span:last-child { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); }
.rv-text { font-size: .94rem; color: var(--text-1); margin: 0; line-height: 1.75; }
.rv-from { font-size: .8rem; color: var(--text-2); margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--line-soft); letter-spacing: .04em; }

/* ---------- 15. KPI strip ---------- */
.kpi {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0; padding: 32px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232, 201, 138, .1), rgba(194, 92, 107, .07));
  border: 1px solid var(--line);
}
.kpi-item { text-align: center; padding: 8px 12px; position: relative; }
.kpi-item + .kpi-item::before {
  content: ""; position: absolute; left: -1px; top: 10%; bottom: 10%; width: 1px;
  background: var(--line);
}
.kpi-item .n { display: block; font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); color: var(--gold); font-weight: 700; line-height: 1.1; }
.kpi-item .l { display: block; font-size: .82rem; color: var(--text-2); letter-spacing: .12em; margin-top: 4px; }

/* ---------- 16. News list ---------- */
.news { display: flex; flex-direction: column; gap: 10px; }
.news-item {
  display: grid; grid-template-columns: 90px 1fr 120px;
  gap: 16px; align-items: center; padding: 14px 18px;
  border-radius: var(--radius-md); background: var(--bg-card);
  border: 1px solid var(--line-soft);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.news-item:hover { border-color: var(--gold-2); transform: translateX(4px); }
.n-date { font-family: var(--font-latin); font-style: italic; color: var(--gold); font-size: 1.05rem; }
.n-content { font-size: .94rem; color: var(--text-1); line-height: 1.6; }
.n-content a { font-weight: 600; display: block; margin-bottom: 4px; font-size: 1.02rem; }
.n-tag {
  display: inline-block; font-size: .7rem; padding: 1px 8px; border-radius: 4px;
  background: rgba(232, 201, 138, .12); color: var(--gold); margin-right: 8px;
  vertical-align: middle; letter-spacing: .12em; text-transform: uppercase;
}
.n-tag.alt { background: rgba(194, 92, 107, .18); color: #f0a8b3; }
.n-tag.win { background: rgba(108, 169, 200, .16); color: #9bd1e3; }
.n-thumb { width: 120px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); }
.n-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 720px) {
  .news-item { grid-template-columns: 80px 1fr; }
  .n-thumb { display: none; }
}

/* ---------- 17. Info cards ---------- */
.info { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.info-card {
  padding: 22px 20px 24px; border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line-soft);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.info-card:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.info-icon { font-size: 1.7rem; margin-bottom: 8px; }
.info-card h5 { margin: 0 0 8px; font-size: 1.05rem; }
.info-card p { font-size: .9rem; color: var(--text-1); margin: 0; line-height: 1.7; }

/* ---------- 18. FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.faq details {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: 14px 18px;
  transition: border-color var(--t-fast);
}
.faq details[open] { border-color: var(--gold-2); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-0);
  font-weight: 600; padding: 6px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-serif); color: var(--gold);
  font-size: 1.4rem; font-weight: 300; transition: transform var(--t-fast);
}
.faq details[open] summary::after { content: "−"; }
.faq-body {
  padding: 8px 0 12px; color: var(--text-1); font-size: .96rem; line-height: 1.8;
  border-top: 1px dashed var(--line-soft); margin-top: 6px;
}

/* ---------- 19. Footer ---------- */
.footer {
  margin-top: 60px; padding: 50px 0 24px; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .4));
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
  margin-bottom: 32px;
}
.footer-brand h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--gold); }
.footer-brand p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }
.footer-col h6 { color: var(--text-2); font-size: .76rem; letter-spacing: .26em; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .9rem; color: var(--text-1); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-2);
}
.footer-bottom .domain { color: var(--gold); }
.footer-disclaimer { font-size: .76rem; opacity: .8; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 20. Back-to-top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3)); color: var(--ink);
  border: none; box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(.9);
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.to-top:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold)); }

/* ---------- 21. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-2 { transition-delay: .12s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal.in { opacity: 1; transform: none; }
}

/* ---------- 22. Print ---------- */
@media print {
  body { background: #fff; color: #111; }
  .navbar, .to-top, .nav-toggle { display: none; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}
