:root {
  --primary: #991B1B;
  --secondary: #1F2937;
  --accent: #D4AF37;
  --bg-dark: #0C0A09;
  --bg-light: rgba(250, 250, 249, 0.04);
  --text-main: #FAFAF9;
  --text-muted: #78716C;
  --border-gold: rgba(212, 175, 55, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--primary);
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.75) 80%, rgba(12, 10, 9, 0) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.nav-brand .brand-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #450a0a);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1.25rem;
}

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

.nav-links a {
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--accent);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(12, 10, 9, 0.98);
    padding: 1rem 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.25rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(153, 27, 27, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1a0808 0%, #0c0a09 50%, #1f0c0c 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.025) 0px, rgba(212, 175, 55, 0.025) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-logo {
  width: clamp(160px, 40vw, 280px);
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(153, 27, 27, 0.55), 0 0 80px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  color: var(--text-main);
  text-shadow: 0 0 30px rgba(153, 27, 27, 0.7);
  font-family: "STKaiti", "KaiTi", serif;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.28s ease;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7f1d1d);
  color: var(--text-main);
  box-shadow: 0 6px 22px rgba(153, 27, 27, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(153, 27, 27, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

.btn-glass {
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), #b8941f);
  color: #1a0808;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.btn-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(250, 250, 249, 0.3);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 5rem 1.25rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 1rem;
  font-family: "STKaiti", "KaiTi", serif;
  letter-spacing: 0.06em;
}

.section-title .accent {
  color: var(--primary);
}

.section-title .gold {
  color: var(--accent);
}

.title-underline {
  text-align: center;
  margin-bottom: 3rem;
}

.title-underline::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.title-leftbar {
  position: relative;
  padding-left: 1rem;
  text-align: left;
}

.title-leftbar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.title-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.title-seal .seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #450a0a);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1.4rem;
}

.card-glass {
  background: rgba(31, 41, 55, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(153, 27, 27, 0.25);
  border-color: var(--accent);
}

.card-solid {
  background: linear-gradient(160deg, #1f2937 0%, #111827 100%);
  border-radius: 14px;
  padding: 1.75rem;
  border-top: 3px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-solid:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.card-bordered {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-bordered:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.25), rgba(212, 175, 55, 0.12));
  border: 1px solid var(--border-gold);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.alt-row:last-child {
  margin-bottom: 0;
}

.alt-row.reverse {
  direction: rtl;
}

.alt-row.reverse > * {
  direction: ltr;
}

@media (max-width: 767px) {
  .alt-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.alt-row img {
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.feature-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.code-card {
  background: linear-gradient(160deg, #1f2937 0%, #0c0a09 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.code-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.code-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(153, 27, 27, 0.3);
}

.code-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(153, 27, 27, 0.2);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.code-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.75rem 0;
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
}

.code-content-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.copy-btn:hover {
  background: var(--accent);
  color: #1a0808;
}

.copy-btn.copied {
  background: var(--primary);
  color: var(--text-main);
  border-color: var(--primary);
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }
}

.guide-toc {
  position: sticky;
  top: 90px;
  align-self: start;
  background: rgba(31, 41, 55, 0.35);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.25rem;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.guide-toc h3 {
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-gold);
}

.guide-toc a {
  display: block;
  padding: 0.5rem 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: all 0.2s ease;
}

.guide-toc a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(212, 175, 55, 0.06);
  padding-left: 0.85rem;
}

.guide-article {
  background: rgba(31, 41, 55, 0.25);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 2rem 2.25rem;
}

.guide-article h2 {
  font-size: 1.5rem;
  color: var(--accent);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
  font-family: "STKaiti", "KaiTi", serif;
}

.guide-article h2:first-child {
  margin-top: 0;
}

.guide-article h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 1.5rem 0 0.75rem;
}

.guide-article p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.guide-article ul {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

.guide-article li {
  margin-bottom: 0.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: linear-gradient(160deg, #1f2937 0%, #0c0a09 100%);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(153, 27, 27, 0.3);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-gold);
}

.news-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 0 0 0.6rem;
  font-family: "STKaiti", "KaiTi", serif;
}

.news-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin: 0 0 1rem;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.download-section {
  background: radial-gradient(ellipse at center, rgba(153, 27, 27, 0.15) 0%, transparent 70%);
  padding: 5rem 1.25rem;
}

.qr-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.qr-card {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.qr-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  margin: 0 auto 0.85rem;
  display: block;
}

.qr-card h4 {
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.qr-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  word-break: break-all;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(160deg, #1f2937 0%, #111827 100%);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(153, 27, 27, 0.25);
}

.contact-card .contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #450a0a);
  color: var(--accent);
  font-size: 1.3rem;
  border: 1px solid var(--border-gold);
}

.contact-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  margin: 0.85rem auto;
  display: block;
}

.contact-card h4 {
  font-size: 1.05rem;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  word-break: break-all;
}

.footer {
  background: #050403;
  border-top: 1px solid var(--border-gold);
  padding: 3rem 1.25rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1rem;
  margin: 0 0 1rem;
  font-family: "STKaiti", "KaiTi", serif;
  letter-spacing: 0.05em;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  margin-bottom: 1.25rem;
}

.friend-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.friend-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.tier-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
}

.tier-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .tier-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.tier-label {
  background: linear-gradient(135deg, var(--primary), #450a0a);
  color: var(--accent);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-gold);
}

.tier-label .amount {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  font-family: "STKaiti", "KaiTi", serif;
}

.tier-label .note {
  font-size: 0.78rem;
  color: var(--text-main);
  opacity: 0.85;
  display: block;
  margin-top: 0.25rem;
}

.tier-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.tier-package {
  background: rgba(31, 41, 55, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier-package .pkg-title {
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline-item h4 {
  color: var(--accent);
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: "STKaiti", "KaiTi", serif;
}

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

.fashion-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.fashion-table th,
.fashion-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.92rem;
}

.fashion-table th {
  background: rgba(153, 27, 27, 0.2);
  color: var(--accent);
  font-weight: 700;
  font-family: "STKaiti", "KaiTi", serif;
}

.fashion-table td {
  color: var(--text-muted);
}

.fashion-table tr:hover td {
  background: rgba(212, 175, 55, 0.05);
  color: var(--text-main);
}

.fashion-table .name {
  color: var(--accent);
  font-weight: 600;
}

.article-hero {
  background: linear-gradient(160deg, #1a0808 0%, #0c0a09 100%);
  padding: 7rem 1.25rem 3rem;
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: "STKaiti", "KaiTi", serif;
  color: var(--text-main);
  margin: 0 0 0.75rem;
}

.article-hero .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.article-body h2 {
  color: var(--accent);
  font-size: 1.45rem;
  margin: 2.25rem 0 1rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--primary);
  font-family: "STKaiti", "KaiTi", serif;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  color: var(--text-main);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.article-body p {
  margin: 0 0 1.1rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  margin: 0 0 1.1rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: var(--accent);
}

.article-body .quote {
  background: rgba(153, 27, 27, 0.12);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0;
  color: var(--text-main);
  font-style: italic;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
