:root {
  --primary: #aa9e87;
  --primary-light: #c4b8a1;
  --primary-dark: #8a7e67;
  --secondary-dark: #363933;
  --secondary-red: #75333c;
  --secondary-gold: #7b6a2e;
  --bg-dark: #1a1c1e;
  --bg-card: #242628;
  --bg-card-hover: #2e3032;
  --text-main: #e8e4dc;
  --text-muted: #9a9590;
  --text-heading: #f0ece4;
  --border-color: rgba(170, 158, 135, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --gradient-hero: linear-gradient(135deg, var(--secondary-dark) 0%, var(--bg-dark) 50%, #2a1f20 100%);
  --gradient-accent: linear-gradient(135deg, var(--secondary-red), var(--secondary-gold));
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Noto Sans SC', 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 28, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 1px;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-heading);
  background: rgba(170, 158, 135, 0.1);
}

.nav-menu a i {
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 100px 24px 40px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 106, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(117, 51, 60, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(170, 158, 135, 0.12);
  border: 1px solid rgba(170, 158, 135, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.hero-badge i {
  color: var(--secondary-gold);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero h1 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Noto Sans SC', sans-serif;
  margin-top: 4px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-meta .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-meta .meta-tag i {
  color: var(--primary);
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(117, 51, 60, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(117, 51, 60, 0.45);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(170, 158, 135, 0.1);
  color: var(--primary-light);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(170, 158, 135, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(170, 158, 135, 0.18);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* ========== Section Common ========== */
.section {
  padding: 72px 24px;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header .accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ========== News Section ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

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

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(170, 158, 135, 0.3);
}

.news-card .news-date {
  font-size: 0.8rem;
  color: var(--secondary-gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card h3 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 10px;
  font-weight: 600;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.news-card .news-link {
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-card .news-link:hover {
  gap: 8px;
}

/* ========== Media Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 12px;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ========== Reviews Section ========== */
.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.reviews-score .score-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-gold);
  line-height: 1;
}

.reviews-score .score-stars {
  color: var(--secondary-gold);
  margin: 8px 0 4px;
  font-size: 1.1rem;
}

.reviews-score .score-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tags span {
  padding: 6px 16px;
  background: rgba(170, 158, 135, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--primary-light);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

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

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-card .review-info h4 {
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
}

.review-card .review-info .review-stars {
  color: var(--secondary-gold);
  font-size: 0.85rem;
}

.review-card .review-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(170, 158, 135, 0.2);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.reviews-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ========== Version History ========== */
.version-timeline {
  position: relative;
  padding-left: 32px;
}

.version-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.version-item {
  position: relative;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.version-item:hover {
  border-color: rgba(170, 158, 135, 0.3);
  box-shadow: var(--shadow-sm);
}

.version-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
}

.version-item .version-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.version-item .version-tag {
  padding: 4px 14px;
  background: var(--gradient-accent);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.version-item .version-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.version-item .version-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.version-item .version-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.version-item .version-content {
  margin-top: 12px;
}

.version-item .version-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.version-item .version-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.version-item .version-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary-gold);
  font-size: 0.7rem;
}

.version-item .version-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  background: rgba(170, 158, 135, 0.1);
  border: 1px solid rgba(170, 158, 135, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--primary-light);
  transition: all var(--transition);
}

.version-item .version-download:hover {
  background: rgba(170, 158, 135, 0.2);
}

/* ========== Guide Section ========== */
.guide-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.guide-filter-btn {
  padding: 8px 20px;
  background: rgba(170, 158, 135, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.guide-filter-btn:hover,
.guide-filter-btn.active {
  background: rgba(170, 158, 135, 0.18);
  color: var(--text-heading);
  border-color: rgba(170, 158, 135, 0.3);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

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

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(170, 158, 135, 0.3);
}

.guide-card .guide-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.guide-card h3 {
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 600;
}

.guide-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.guide-card .guide-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(123, 106, 46, 0.12);
  color: var(--secondary-gold);
}

.guide-card .guide-difficulty.hard {
  background: rgba(117, 51, 60, 0.12);
  color: var(--secondary-red);
}

.guide-card[data-category] {
  transition: all var(--transition), opacity 0.4s ease;
}

.guide-card.hidden {
  display: none;
}

/* ========== Chapter Section ========== */
.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chapter-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

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

.chapter-card:hover {
  border-color: rgba(170, 158, 135, 0.3);
  box-shadow: var(--shadow-sm);
}

.chapter-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  color: #fff;
  min-height: 80px;
}

.chapter-number .ch-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.chapter-number .ch-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.chapter-body h3 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 6px;
  font-weight: 600;
}

.chapter-body .chapter-type {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.chapter-type.main {
  background: rgba(123, 106, 46, 0.15);
  color: var(--secondary-gold);
}

.chapter-type.character {
  background: rgba(117, 51, 60, 0.15);
  color: #c46b75;
}

.chapter-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}

.chapter-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.chapter-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chapter-meta i {
  color: var(--primary);
  font-size: 0.75rem;
}

.chapter-mood {
  padding: 2px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  background: rgba(170, 158, 135, 0.1);
  border: 1px solid var(--border-color);
}

/* ========== FAQ Section ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.faq-item:hover {
  border-color: rgba(170, 158, 135, 0.3);
}

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

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--secondary-dark);
  border-top: 1px solid var(--border-color);
  padding: 48px 24px 24px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom .footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(26, 28, 30, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 32px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-meta .meta-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .section {
    padding: 48px 16px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .reviews-stats {
    gap: 24px;
  }

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

  .chapter-card {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .chapter-number .ch-num {
    font-size: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-nav {
    font-size: 1.8rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

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

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

  .review-card {
    padding: 20px;
  }
}
