/* 糖心Vlog - 工业复古Loft风格主样式表 */
:root {
  --color-bg: #1a1a1a;
  --color-bg2: #222222;
  --color-surface: #2a2a2a;
  --color-rust: #8b3a2a;
  --color-rust-light: #b04a35;
  --color-gold: #c8a96e;
  --color-wood: #6b4c2a;
  --color-concrete: #4a4a4a;
  --color-text: #e8e0d5;
  --color-text-muted: #9a9080;
  --color-border: #3a3530;
  --color-metal: #5a5a5a;
  --font-main: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-display: 'Noto Serif SC', 'SimSun', serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

/* ===== HEADER & NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20,18,16,0.97);
  border-bottom: 2px solid var(--color-rust);
  backdrop-filter: blur(8px);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
}

.site-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-rust);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
  border: 2px solid var(--color-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--color-text-muted);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
  background: rgba(139,58,42,0.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 18px;
}

/* ===== SEARCH BAR ===== */
.search-bar-wrap {
  background: var(--color-bg2);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}

.search-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input {
  flex: 1;
  max-width: 600px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}

.search-input::placeholder { color: var(--color-text-muted); }
.search-input:focus { border-color: var(--color-rust); }

.search-btn {
  background: var(--color-rust);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-main);
  transition: background 0.3s;
}

.search-btn:hover { background: var(--color-rust-light); }

/* ===== BANNER ===== */
.hero-banner {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,58,42,0.35) 0%, rgba(20,18,16,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  background: var(--color-rust);
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 4px 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-title span { color: var(--color-gold); }

.hero-sub {
  font-size: 16px;
  color: rgba(232,224,213,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-rust);
  color: #fff;
  padding: 12px 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--color-rust);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--color-rust-light);
  border-color: var(--color-rust-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  padding: 12px 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 72px 0;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-block;
  color: var(--color-rust-light);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

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

.section-desc {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===== VIDEO CARDS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139,58,42,0.3);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(0.7) saturate(1.2);
}

/* Metal gloss + rust particle effect on hover */
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(200,169,110,0) 0%,
    rgba(200,169,110,0.15) 40%,
    rgba(200,169,110,0.35) 50%,
    rgba(200,169,110,0.15) 60%,
    rgba(200,169,110,0) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.video-card:hover .video-thumb::after {
  opacity: 1;
  animation: metalShine 1.2s ease-in-out;
}

@keyframes metalShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-btn { opacity: 1; }

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(139,58,42,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(200,169,110,0.5);
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}

/* Rust particle animation */
.rust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .rust-particles { opacity: 1; }

.rust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-rust);
  animation: rustFloat 1.5s ease-in-out infinite;
}

@keyframes rustFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-8px) scale(1.5); opacity: 0.4; }
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--color-text-muted);
}

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

/* ===== STORY CARDS ===== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.story-card:hover { transform: translateY(-3px); }

.story-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.story-card:hover .story-img img { transform: scale(1.05); }

.story-body {
  padding: 20px;
}

.story-cat {
  font-size: 11px;
  color: var(--color-rust-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.story-excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== IMAGE WALL ===== */
.image-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.image-wall .wall-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
}

.image-wall .wall-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.image-wall .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}

.image-wall .wall-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.2);
}

/* ===== AI TOOLS ===== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.ai-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

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

.ai-card:hover {
  border-color: var(--color-rust);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139,58,42,0.2);
}

.ai-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.ai-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.ai-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== CREATORS ===== */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.creator-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s;
}

.creator-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.creator-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--color-rust);
}

.creator-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.creator-role {
  font-size: 12px;
  color: var(--color-rust-light);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.creator-stats {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== REVIEWS ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-rust);
  border-radius: 4px;
  padding: 20px;
}

.review-stars {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.review-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  background: var(--color-surface);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.3s;
  user-select: none;
}

.faq-q:hover { background: rgba(139,58,42,0.15); }

.faq-q.open { color: var(--color-gold); }

.faq-icon {
  font-size: 18px;
  color: var(--color-rust-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 14px 20px;
  background: var(--color-bg2);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
}

.faq-a.open { display: block; }

/* ===== PARTNERS ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.partner-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all 0.3s;
}

.partner-item:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-icon {
  color: var(--color-rust-light);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.qr-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.qr-box {
  width: 100px;
  height: 100px;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.qr-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  border-top: 2px solid var(--color-rust);
  padding: 40px 0 20px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--color-gold); }

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

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-bg2) 0%, #1a1510 100%);
  border-bottom: 2px solid var(--color-rust);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  color: var(--color-text);
  margin-bottom: 10px;
}

.page-hero h1 span { color: var(--color-gold); }

.page-hero p {
  color: var(--color-text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-rust-light); }

/* ===== ARTICLE GRID ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.article-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}

.article-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card:hover .article-img img { transform: scale(1.05); }

.article-body {
  padding: 18px;
}

.article-cat {
  font-size: 11px;
  color: var(--color-rust-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.article-title a { color: var(--color-text); }
.article-title a:hover { color: var(--color-gold); }

.article-excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: all 0.3s;
}

.pagination a:hover, .pagination .current {
  background: var(--color-rust);
  border-color: var(--color-rust);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .image-wall { grid-template-columns: repeat(2, 1fr); }
  .image-wall .wall-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(20,18,16,0.98); padding: 16px; border-bottom: 1px solid var(--color-border); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-banner { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .image-wall { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .video-grid { grid-template-columns: 1fr; }
  .image-wall { grid-template-columns: 1fr; }
  .image-wall .wall-item.wide { grid-column: span 1; aspect-ratio: 16/9; }
}

/* ===== DECORATIVE ELEMENTS ===== */
.divider-rust {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-rust), transparent);
  margin: 48px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background: rgba(139,58,42,0.15);
  border: 1px solid var(--color-rust);
  color: var(--color-rust-light);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-rust); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-rust-light); }
