/* 17c 工业复古Loft风格主样式 | www.nmf9mi.cn */
:root {
  --black: #1a1a1a;
  --dark: #222222;
  --charcoal: #2d2d2d;
  --rust: #8b3a2a;
  --rust-light: #a84832;
  --brick: #7a3b2e;
  --wood: #5c3d1e;
  --metal: #4a4a4a;
  --gold: #c9a84c;
  --cream: #e8dcc8;
  --light: #f0e8d8;
  --text: #d4c9b0;
  --text-muted: #8a7d6a;
  --border: #3a3a3a;
  --shadow: rgba(0,0,0,0.6);
}

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

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Noto Serif SC', 'SimSun', 'STSong', Georgia, serif;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--rust-light); }

p { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--dark); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--cream); position: relative; display: inline-block; padding-bottom: 1rem; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 1rem auto 0; }

/* ===== HEADER / NAV ===== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(26,26,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.logo {
  font-size: 1.8rem; font-weight: 900; letter-spacing: 0.1em;
  color: var(--cream);
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
  font-family: 'Noto Sans SC', sans-serif;
}
.logo span { color: var(--gold); }
.logo small { font-size: 0.55rem; color: var(--text-muted); display: block; letter-spacing: 0.2em; font-weight: 400; }

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  color: var(--text); font-size: 0.85rem; padding: 0.5rem 0.8rem;
  border-radius: 2px; transition: all 0.3s;
  font-family: 'Noto Sans SC', sans-serif;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: all 0.3s; }

/* ===== SEARCH BAR ===== */
.search-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
}
.search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.5rem;
}
.search-inner input {
  flex: 1; background: var(--dark); border: 1px solid var(--border);
  color: var(--text); padding: 0.5rem 1rem; border-radius: 2px;
  font-size: 0.9rem; font-family: inherit;
  outline: none; transition: border-color 0.3s;
}
.search-inner input::placeholder { color: var(--text-muted); }
.search-inner input:focus { border-color: var(--gold); }
.search-inner button {
  background: var(--rust); color: var(--cream); border: none;
  padding: 0.5rem 1.2rem; cursor: pointer; border-radius: 2px;
  font-size: 0.9rem; font-family: inherit; transition: background 0.3s;
  white-space: nowrap;
}
.search-inner button:hover { background: var(--rust-light); }

/* ===== HERO BANNER ===== */
#hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.45);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(139,58,42,0.25) 50%, rgba(26,26,26,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem 1.5rem;
  max-width: 900px;
}
.hero-brand {
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 900;
  color: var(--cream); letter-spacing: 0.15em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8), 0 0 60px rgba(201,168,76,0.3);
  font-family: 'Noto Sans SC', sans-serif;
  margin-bottom: 0.5rem;
}
.hero-brand span { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text); margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.hero-sub {
  font-size: 0.95rem; color: var(--text-muted);
  margin-bottom: 2.5rem; letter-spacing: 0.05em;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.8rem 2rem;
  font-size: 0.95rem; font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600; letter-spacing: 0.1em;
  border-radius: 2px; cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: var(--rust); color: var(--cream);
  border: 2px solid var(--rust);
  box-shadow: 0 4px 20px rgba(139,58,42,0.4);
}
.btn-primary:hover {
  background: var(--rust-light); border-color: var(--rust-light);
  color: var(--cream); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,58,42,0.5);
}
.btn-outline {
  background: transparent; color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream); color: var(--black);
  transform: translateY(-2px);
}

/* ===== VIDEO CARDS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.video-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  display: block;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
/* Metal sheen overlay on hover */
.video-thumb::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, transparent 30%, rgba(201,168,76,0.15) 50%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.video-card:hover .video-thumb::before { opacity: 1; }

/* Rust particle effect */
.video-thumb::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background-image:
    radial-gradient(circle, rgba(139,58,42,0.3) 1px, transparent 1px),
    radial-gradient(circle, rgba(201,168,76,0.2) 1px, transparent 1px);
  background-size: 20px 20px, 35px 35px;
  background-position: 0 0, 10px 10px;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
  animation: rustShake 0.3s ease-in-out infinite;
}
.video-card:hover .video-thumb::after { opacity: 1; }

@keyframes rustShake {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(0.5px,-0.5px); }
  75% { transform: translate(-0.5px,0.5px); }
}

.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  z-index: 3; width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s;
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 20px solid var(--black);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-btn {
  opacity: 1; transform: translate(-50%,-50%) scale(1);
}
.video-type-badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 4;
  background: var(--rust); color: var(--cream);
  font-size: 0.7rem; padding: 0.2rem 0.6rem;
  border-radius: 2px; font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600; letter-spacing: 0.05em;
}
.video-info { padding: 1rem; }
.video-info h3 { font-size: 1rem; color: var(--cream); margin-bottom: 0.5rem; }
.video-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; line-height: 1.6; }
.video-stats {
  display: flex; gap: 1rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.video-stats span { display: flex; align-items: center; gap: 0.3rem; }
.video-stats .icon { font-size: 0.85rem; }

/* ===== STORY CARDS ===== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.story-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.story-card img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: filter 0.3s;
}
.story-card:hover img { filter: brightness(0.85); }
.story-body { padding: 1.2rem; }
.story-body h3 { color: var(--cream); margin-bottom: 0.5rem; font-size: 1rem; }
.story-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.story-tag {
  display: inline-block; margin-top: 0.8rem;
  background: rgba(139,58,42,0.3); color: var(--gold);
  font-size: 0.75rem; padding: 0.2rem 0.7rem;
  border-radius: 2px; border: 1px solid rgba(201,168,76,0.3);
}

/* ===== IMAGE WALL ===== */
.image-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.8rem;
}
.image-wall-item {
  position: relative; overflow: hidden;
  border-radius: 2px; aspect-ratio: 4/3;
  cursor: pointer;
}
.image-wall-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s, filter 0.4s;
}
.image-wall-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.image-wall-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.image-wall-item:hover .overlay { opacity: 1; }
.image-wall-item .overlay span { color: var(--cream); font-size: 0.85rem; }

/* ===== AI TOOLS ===== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ai-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  transition: transform 0.3s;
}
.ai-card:hover { transform: translateY(-3px); }
.ai-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ai-card-body { padding: 1.2rem; }
.ai-card-body h3 { color: var(--cream); margin-bottom: 0.5rem; font-size: 1rem; }
.ai-card-body p { color: var(--text-muted); font-size: 0.85rem; }
.ai-badge {
  display: inline-block; margin-top: 0.8rem;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  color: var(--black); font-size: 0.72rem; padding: 0.2rem 0.7rem;
  border-radius: 2px; font-weight: 700; letter-spacing: 0.05em;
}

/* ===== CREATORS ===== */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.creator-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden; text-align: center;
  transition: transform 0.3s;
}
.creator-card:hover { transform: translateY(-3px); }
.creator-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.creator-body { padding: 1rem; }
.creator-body h4 { color: var(--cream); margin-bottom: 0.3rem; }
.creator-body p { color: var(--text-muted); font-size: 0.82rem; }
.creator-tag {
  display: inline-block; margin-top: 0.5rem;
  color: var(--gold); font-size: 0.75rem;
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
}

/* ===== REVIEWS ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-left: 3px solid var(--rust);
  border-radius: 3px; padding: 1.5rem;
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-2px); }
.review-text { color: var(--text); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.review-text::before { content: '\201C'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { color: var(--cream); font-size: 0.9rem; font-weight: 600; }
.review-stars { color: var(--gold); font-size: 0.8rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 3px;
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq-q {
  background: var(--charcoal); padding: 1rem 1.5rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--cream); font-weight: 600; font-size: 0.95rem;
  transition: background 0.3s;
  font-family: 'Noto Sans SC', sans-serif;
}
.faq-q:hover { background: var(--metal); }
.faq-q .arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform 0.3s;
  margin-left: 1rem;
}
.faq-item.open .faq-q .arrow { transform: rotate(-135deg); }
.faq-a {
  background: var(--dark); padding: 0 1.5rem;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text); font-size: 0.9rem; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 200px; padding: 1rem 1.5rem; }

/* ===== PARTNERS ===== */
.partner-grid {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center;
}
.partner-item {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 3px; padding: 1rem 2rem;
  color: var(--text-muted); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.1em;
  transition: all 0.3s; cursor: default;
  font-family: 'Noto Sans SC', sans-serif;
}
.partner-item:hover { border-color: var(--gold); color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.contact-item { text-align: center; }
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--charcoal));
  border: 2px solid var(--rust);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.5rem;
}
.contact-item h4 { color: var(--cream); margin-bottom: 0.5rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.qr-placeholder {
  width: 100px; height: 100px;
  background: var(--charcoal); border: 2px solid var(--border);
  margin: 0.8rem auto 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--text-muted); text-align: center;
  border-radius: 3px;
}

/* ===== FOOTER ===== */
#site-footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-col h5 { color: var(--cream); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.1em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.8rem; }
.social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--charcoal); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem;
  transition: all 0.3s; text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--charcoal); padding: 0.7rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center; }
.breadcrumb ol li { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb ol li a { color: var(--text-muted); }
.breadcrumb ol li a:hover { color: var(--gold); }
.breadcrumb ol li + li::before { content: '›'; margin-right: 0.3rem; }
.breadcrumb ol li:last-child { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; padding: 5rem 1.5rem;
  text-align: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p { color: var(--text); max-width: 600px; margin: 0 auto; }

/* ===== ARTICLE GRID ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.article-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.article-body { padding: 1.2rem; }
.article-body .tag {
  display: inline-block; background: rgba(139,58,42,0.3);
  color: var(--rust-light); font-size: 0.72rem; padding: 0.2rem 0.6rem;
  border-radius: 2px; margin-bottom: 0.6rem;
  font-family: 'Noto Sans SC', sans-serif; font-weight: 600;
}
.article-body h3 { color: var(--cream); font-size: 1rem; margin-bottom: 0.5rem; }
.article-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.article-meta { display: flex; gap: 1rem; margin-top: 0.8rem; font-size: 0.78rem; color: var(--text-muted); }

/* ===== DECORATIVE ELEMENTS ===== */
.rivet {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--metal);
  box-shadow: 0 0 3px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.1);
}
.metal-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--metal), var(--gold), var(--metal), transparent);
  margin: 2rem 0; opacity: 0.5;
}
.rust-badge {
  display: inline-block; padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--rust) 0%, var(--brick) 100%);
  color: var(--cream); font-size: 0.78rem; letter-spacing: 0.1em;
  font-family: 'Noto Sans SC', sans-serif; font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  padding-right: 1.2rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; text-align: center;
}
.stat-item h3 { color: var(--gold); font-size: 2rem; font-weight: 900; }
.stat-item p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 1rem; }
  nav.open { display: flex; }
  nav a { padding: 0.7rem 1rem; border-radius: 2px; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  #hero { min-height: 70vh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 3rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .video-grid, .story-grid, .article-grid { grid-template-columns: 1fr; }
  .creator-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LAZY LOAD ===== */
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
