/* ===== 真红玛瑙 — Crimson Agate Theme ===== */
/* Gemstone-deep reds, crystal-vein whites, faceted-jewel motifs on light mineral background */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Mineral palette */
  --bg: #faf7f2;
  --bg-card: #fefcf9;
  --bg-alt: #f3eee5;
  --text: #2c1a14;
  --text-soft: #6b4d3d;
  --text-muted: #9e8274;

  /* Crimson gemstone accents */
  --crimson: #a8323e;
  --crimson-deep: #781c2a;
  --crimson-light: #c94a56;
  --crimson-glow: #e0606e;
  --ruby: #9b1b30;
  --garnet: #733635;

  /* Crystal vein */
  --crystal: #f5efe8;
  --crystal-vein: #e8d9cc;
  --vein-white: #fefbf8;

  /* Accents */
  --gold: #c49b5c;
  --gold-light: #d4b87a;
  --rose: #d4848c;
  --shadow-soft: rgba(120, 28, 42, 0.08);
  --shadow-card: rgba(120, 28, 42, 0.12);
  --shadow-glow: rgba(168, 50, 62, 0.25);

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Crystal vein texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(232, 217, 204, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(232, 217, 204, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(196, 155, 92, 0.08) 0%, transparent 40%);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; margin: 32px 0 16px; }
h3 { font-size: 1.4rem; margin: 24px 0 12px; }
p { margin-bottom: 14px; color: var(--text-soft); }

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--crimson-light); }

/* ===== Screen Reader Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(44, 26, 20, 0.97) 0%, rgba(44, 26, 20, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--crimson);
  box-shadow: 0 2px 20px var(--shadow-glow);
}

header .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--crystal);
  text-decoration: none;
}
header .logo:hover { color: var(--crimson-light); }

header .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-size: 0.95rem;
  color: var(--crystal-vein);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
nav a:hover { color: var(--crimson-light); }

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width var(--transition);
}
nav a:hover::after { width: 100%; }
nav a.active::after { width: 100%; background: var(--crimson-light); }

/* Header CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  background: linear-gradient(135deg, var(--crimson), var(--ruby));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(168, 50, 62, 0.4);
  text-decoration: none;
  white-space: nowrap;
}
.btn-cta:hover {
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 70, 80, 0.5);
  transform: translateY(-1px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  text-align: center;
  background: linear-gradient(180deg,
    rgba(168, 50, 62, 0.06) 0%,
    rgba(120, 28, 42, 0.02) 40%,
    var(--bg) 80%
  );
  overflow: hidden;
}

/* Faceted jewel decorative motif */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg,
    rgba(168, 50, 62, 0.06) 0%,
    rgba(168, 50, 62, 0.1) 25%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(168, 50, 62, 0.06) 75%,
    transparent 100%
  );
  border: 1px solid rgba(168, 50, 62, 0.1);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 160px;
  height: 160px;
  transform: rotate(45deg);
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(196, 155, 92, 0.06) 40%,
    rgba(196, 155, 92, 0.1) 60%,
    transparent 100%
  );
  border: 1px solid rgba(196, 155, 92, 0.08);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--crimson-deep);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px var(--shadow-soft);
  letter-spacing: 4px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-glow);
  border: 2px solid rgba(168, 50, 62, 0.15);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sub-page hero (reduced padding) */
.hero-subpage {
  padding: 40px 24px 48px;
}

.hero-subpage-title {
  font-size: 2rem;
  font-weight: 700;
}

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Sections ===== */
section {
  padding: 64px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin-bottom: 8px;
  position: relative;
}

/* Faceted diamond divider under section titles */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  border-radius: 2px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.section-alt {
  background: var(--bg-alt);
}

/* Crystal vein divider between sections */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crystal-vein), transparent);
}

/* ===== Content Section (sub-pages) ===== */
.content-section {
  padding: 48px 0 64px;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.content-section h3 {
  font-family: var(--font-serif);
  color: var(--crimson-deep);
  border-left: 3px solid var(--crimson);
  padding-left: 14px;
  margin-top: 36px;
}

/* ===== Info Cards Grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--crystal-vein);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all var(--transition);
}

.info-card:hover {
  border-left-color: var(--crimson-light);
  box-shadow: 0 6px 24px var(--shadow-glow);
  transform: translateY(-2px);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--crimson-deep);
  margin: 0 0 8px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

/* ===== Feature Cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--crystal-vein);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  box-shadow: 0 8px 30px var(--shadow-glow);
  transform: translateY(-3px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 50, 62, 0.1), rgba(196, 155, 92, 0.08));
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--crimson-deep);
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

/* ===== Screenshot Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--crystal-vein);
  transition: all var(--transition);
  aspect-ratio: 16/9;
  position: relative;
}

.gallery-item:hover {
  border-color: var(--crimson);
  box-shadow: 0 6px 24px var(--shadow-glow);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(44, 26, 20, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--crimson);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--crystal);
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--crimson);
  color: #fff;
}

/* ===== Player Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--crystal-vein);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(168, 50, 62, 0.1);
  line-height: 1;
}

.review-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 700;
  color: var(--crimson-deep);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ===== CTA Banner (index only) ===== */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg,
    rgba(168, 50, 62, 0.04) 0%,
    rgba(120, 28, 42, 0.02) 50%,
    rgba(196, 155, 92, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(168, 50, 62, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(196, 155, 92, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: var(--text-soft);
  margin-bottom: 28px;
  position: relative;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--crimson), var(--ruby));
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(168, 50, 62, 0.45);
  text-decoration: none;
  position: relative;
}

.btn-cta-large:hover {
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  color: #fff;
  box-shadow: 0 8px 32px rgba(200, 70, 80, 0.6);
  transform: translateY(-2px);
}

/* ===== Game Info Table ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--crystal-vein);
}

.info-table th {
  background: rgba(168, 50, 62, 0.04);
  font-weight: 700;
  color: var(--crimson-deep);
  width: 140px;
  font-family: var(--font-serif);
}

.info-table td {
  color: var(--text-soft);
}

/* ===== System Requirements Table ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 32px;
}

.sys-reqs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.sys-reqs-table thead {
  background: linear-gradient(135deg, var(--crimson-deep), var(--crimson));
  color: #fff;
}

.sys-reqs-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}

.sys-reqs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--crystal-vein);
  color: var(--text-soft);
  font-size: 0.93rem;
}

.sys-reqs-table tbody tr:nth-child(even) {
  background: rgba(168, 50, 62, 0.02);
}

.sys-reqs-table tbody tr:hover {
  background: rgba(168, 50, 62, 0.05);
}

.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin: 36px 0 8px;
}

.sys-reqs-h3:first-of-type {
  margin-top: 20px;
}

/* ===== FAQ Accordion ===== */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--crystal-vein);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(168, 50, 62, 0.25);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--crimson);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--crimson);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ===== Guide Page ===== */
.guide-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 32px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px dashed var(--crystal-vein);
}

.route-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}

.tip-box {
  background: linear-gradient(135deg, rgba(168, 50, 62, 0.06), rgba(196, 155, 92, 0.04));
  border: 1px solid rgba(168, 50, 62, 0.2);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}

.tip-box strong {
  color: var(--crimson-deep);
  font-family: var(--font-serif);
}

/* ===== Story Page ===== */
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 32px 0 8px;
}

.story-block {
  margin-bottom: 24px;
}

.story-block p {
  line-height: 2;
  color: var(--text-soft);
  text-indent: 2em;
}

.theme-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(168, 50, 62, 0.08);
  color: var(--crimson-deep);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 4px;
}

/* ===== Characters Page ===== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--crystal-vein);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.char-card:hover {
  box-shadow: 0 8px 30px var(--shadow-glow);
  transform: translateY(-2px);
}

.char-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 3px solid var(--crimson);
}

.char-card-body {
  padding: 20px 24px 24px;
  flex: 1;
}

.char-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--crimson-deep);
  margin: 0 0 8px;
}

.char-card-body .char-role {
  font-size: 0.85rem;
  color: var(--crimson-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.char-trait {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 14px;
  background: rgba(168, 50, 62, 0.06);
  color: var(--crimson-deep);
  font-size: 0.82rem;
}

.char-card-body p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0;
}

.char-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--crystal-vein);
}

.char-stat {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.char-stat span {
  color: var(--crimson);
  font-weight: 700;
}

.section-subheading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--crimson-deep);
  margin: 40px 0 24px;
}

/* ===== Content Lists ===== */
.content-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-list li {
  margin-bottom: 5px;
  color: var(--text-soft);
  line-height: 1.8;
}

.content-list-num {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-list-num li {
  margin-bottom: 8px;
  color: var(--text-soft);
  line-height: 1.9;
}

.content-li { margin-bottom: 5px; color: var(--text-soft); }
.content-li-sm { margin-bottom: 4px; color: var(--text-soft); }
.content-li-md { margin-bottom: 8px; color: var(--text-soft); }
.content-li-lg { margin-bottom: 10px; color: var(--text-soft); }

/* ===== Colored Strong Tags ===== */
.strong-crimson { color: var(--crimson); }
.strong-gold { color: var(--gold); }
.strong-red { color: var(--ruby); }
.strong-muted { color: var(--text-muted); }
.strong-navy { color: var(--crimson-deep); }

/* ===== Table Highlight ===== */
.td-highlight {
  color: var(--crimson);
  font-weight: 700;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(180deg, rgba(44, 26, 20, 0.95), rgba(44, 26, 20, 0.98));
  border-top: 2px solid var(--crimson);
  padding: 32px 24px;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-title-main { font-size: 2.2rem; letter-spacing: 2px; }

  .hero { padding: 48px 16px 64px; }
  .hero-subpage { padding: 32px 16px 36px; }

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

  header .header-inner { height: 56px; padding: 0 16px; }
  header .logo { font-size: 1.1rem; }

  nav { gap: 14px; }
  nav a { font-size: 0.85rem; }

  .btn-cta { padding: 6px 16px; font-size: 0.85rem; }

  section { padding: 40px 0; }
  .container { padding: 0 16px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .section-title { font-size: 1.6rem; }
  .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 1.8rem; letter-spacing: 1px; }

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

  nav { gap: 8px; }
  nav a { font-size: 0.78rem; }

  .hero { padding: 36px 12px 48px; }

  .btn-cta-large { padding: 12px 28px; font-size: 1rem; }

  .char-card-img { height: 220px; }
}

/* ===== Animations ===== */
@keyframes jewel-shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.jewel-shimmer {
  animation: jewel-shimmer 4s ease-in-out infinite;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
