/* ===== CSS Variables ===== */
:root {
  --color-primary: #c2bbb0;
  --color-secondary: #24333e;
  --color-accent: #6e354a;
  --color-olive: #655d43;
  --color-bg: #0e1a22;
  --color-bg-light: #162530;
  --color-bg-card: #1c2f3d;
  --color-text: #e8e4df;
  --color-text-muted: #9a9590;
  --color-border: rgba(194, 187, 176, 0.15);
  --color-gradient-accent: linear-gradient(135deg, #6e354a, #8b4562);
  --color-gradient-hero: linear-gradient(180deg, rgba(14, 26, 34, 0.6) 0%, rgba(14, 26, 34, 0.95) 100%);
  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: #fff;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Section Common ===== */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 16px;
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

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

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

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: 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: 480px;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: var(--color-gradient-hero), url('../img/圣骑士莉卡物语-screenshot-02.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(110, 53, 74, 0.15) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 53, 74, 0.3);
  border: 1px solid rgba(110, 53, 74, 0.5);
  color: #e8b4c8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero h1 span {
  display: block;
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0;
}

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

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

.hero-meta .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194, 187, 176, 0.1);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--color-primary);
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-gradient-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(110, 53, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(110, 53, 74, 0.6);
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: rgba(194, 187, 176, 0.1);
  color: #fff;
}

/* ===== Features Tags ===== */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-features .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(101, 93, 67, 0.2);
  border: 1px solid rgba(101, 93, 67, 0.4);
  color: #c9c0a0;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
}

/* ===== News Section ===== */
.news {
  background: var(--color-bg-light);
}

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

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

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

.news-card .news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

.news-card .news-link {
  font-size: 0.85rem;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.news-card .news-link:hover {
  color: #e8b4c8;
}

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

.news-type.update {
  background: rgba(110, 53, 74, 0.2);
  color: #d48aa0;
}

.news-type.announce {
  background: rgba(101, 93, 67, 0.2);
  color: #c9c0a0;
}

.news-type.event {
  background: rgba(36, 51, 62, 0.5);
  color: #7ab0d4;
}

/* ===== Gallery Section ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

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

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

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

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

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

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

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

.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: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== Reviews Section ===== */
.reviews {
  background: var(--color-bg-light);
}

.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 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.reviews-score .stars {
  color: #f0c040;
  font-size: 1.1rem;
  margin: 4px 0;
}

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

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

.reviews-tags .tag {
  background: rgba(194, 187, 176, 0.1);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  color: var(--color-primary);
}

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

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

.review-card {
  min-width: 100%;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .review-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    min-width: 33.333%;
  }
}

.review-card-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
}

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

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

.review-info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-info .date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.review-stars {
  color: #f0c040;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.review-card-inner .review-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ===== 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(--color-border);
}

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

.version-item:hover {
  border-color: rgba(110, 53, 74, 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(--color-accent);
  border: 2px solid var(--color-bg);
}

.version-item.latest::before {
  box-shadow: 0 0 0 4px rgba(110, 53, 74, 0.3);
}

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

.version-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

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

.version-badge {
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(110, 53, 74, 0.2);
  color: #d48aa0;
}

.version-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

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

.version-changes {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.version-changes li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.version-changes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.version-download {
  margin-top: 14px;
}

/* ===== Strategy / Walkthrough Section ===== */
.strategy {
  background: var(--color-bg-light);
}

.strategy-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

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

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

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(110, 53, 74, 0.3);
}

.strategy-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(110, 53, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: 1.3rem;
}

.strategy-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

.strategy-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.difficulty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
}

.difficulty .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}

.difficulty .dot.filled {
  background: var(--color-accent);
}

.recommend-badge {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 10px;
  background: rgba(101, 93, 67, 0.2);
  color: #c9c0a0;
}

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

.chapter-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.chapter-card:hover {
  border-color: rgba(110, 53, 74, 0.3);
  box-shadow: var(--shadow-sm);
}

.chapter-card .chapter-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(194, 187, 176, 0.06);
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-heading);
  line-height: 1;
}

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

.chapter-type.main {
  background: rgba(110, 53, 74, 0.2);
  color: #d48aa0;
}

.chapter-type.side {
  background: rgba(101, 93, 67, 0.2);
  color: #c9c0a0;
}

.chapter-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.chapter-card .chapter-desc {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.chapter-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

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

.chapter-meta-row span i {
  color: var(--color-accent);
  font-size: 0.78rem;
}

.chapter-mood {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(194, 187, 176, 0.08);
  color: var(--color-primary);
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--color-bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: rgba(110, 53, 74, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.faq-question .faq-icon {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  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;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-secondary);
  padding: 50px 0 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
}

.footer-bottom a:hover {
  color: #fff;
}

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

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right var(--transition);
    border-left: 1px solid var(--color-border);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

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

  .hero-meta {
    gap: 8px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .reviews-stats {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

  .version-timeline {
    padding-left: 24px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

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

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