/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE TEMPLATE 1 — MAGAZINE GRID
   Newspaper/magazine style with hero, grid, and category sections
   ═══════════════════════════════════════════════════════════════════════════ */

.mag-home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.mh-hero {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.mh-hero-link {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.mh-hero-image {
  position: relative;
  overflow: hidden;
}
.mh-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s ease;
}
.mh-hero:hover .mh-hero-image img {
  transform: scale(1.03);
}
.mh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.mh-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}
.mh-hero-cat {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mh-hero-cat a { color: #fff; text-decoration: none; }
.mh-hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
}
.mh-hero-excerpt {
  font-size: 16px;
  opacity: .85;
  margin: 0 0 12px;
  max-width: 600px;
  line-height: 1.5;
}
.mh-hero-meta {
  font-size: 13px;
  opacity: .7;
}
.mh-hero-sep { margin: 0 6px; }

/* ── Section Headers ──────────────────────────────────────────────────── */
.mh-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #111;
}
.mh-section-header h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.mh-view-all {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.mh-view-all:hover { color: #111; }

/* ── Grid Cards ───────────────────────────────────────────────────────── */
.mh-grid-section { margin-bottom: 50px; }
.mh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mh-grid-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.mh-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mh-grid-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mh-grid-card-img {
  overflow: hidden;
}
.mh-grid-card-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.mh-grid-card:hover .mh-grid-card-img img {
  transform: scale(1.05);
}
.mh-grid-card-body {
  padding: 16px;
}
.mh-grid-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff027f;
  margin-bottom: 6px;
}
.mh-grid-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #111;
}
.mh-grid-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0 0 8px;
}
.mh-grid-date {
  font-size: 12px;
  color: #aaa;
}

/* ── Category Rows ────────────────────────────────────────────────────── */
.mh-cat-section {
  margin-bottom: 50px;
}
.mh-cat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mh-cat-featured a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.mh-cat-featured-img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 14px;
}
.mh-cat-featured-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.mh-cat-featured:hover .mh-cat-featured-img img {
  transform: scale(1.03);
}
.mh-cat-featured h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.mh-cat-featured p {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px;
  line-height: 1.5;
}
.mh-cat-featured time {
  font-size: 12px;
  color: #aaa;
}
.mh-cat-item a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.mh-cat-item:first-child a { padding-top: 0; }
.mh-cat-item:last-child a { border-bottom: none; }
.mh-cat-item-img {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
}
.mh-cat-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mh-cat-item h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px;
}
.mh-cat-item time {
  font-size: 11px;
  color: #aaa;
}

/* ── Magazine Grid — Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .mh-hero-content { padding: 20px; }
  .mh-hero-title { font-size: 24px; }
  .mh-hero-excerpt { font-size: 14px; }
  .mh-hero-image { min-height: 200px; }
  .mh-grid { grid-template-columns: 1fr; }
  .mh-cat-row { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mh-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE TEMPLATE 2 — NEWS PORTAL
   Breaking news ticker, top stories, category sections
   ═══════════════════════════════════════════════════════════════════════════ */

.np-home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Ticker ───────────────────────────────────────────────────────────── */
.np-ticker {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 0;
  border-top: 3px solid #e01;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.np-ticker-label {
  flex-shrink: 0;
  padding: 4px 14px;
  background: #e01;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  margin-right: 16px;
  animation: pulse-label 2s infinite;
}
@keyframes pulse-label {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.np-ticker-wrap {
  overflow: hidden;
  flex: 1;
}
.np-ticker-list {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 20s linear infinite;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.np-ticker-list li {
  flex-shrink: 0;
  margin: 0;
  list-style: none;
}
.np-ticker-list li a {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.np-ticker-list li a:hover { color: #e01; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Titles ───────────────────────────────────────────────────── */
.np-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
}
.np-section-title h2 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0;
}
.np-more {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
}
.np-more:hover { color: #111; }
.np-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #e01;
  margin-bottom: 6px;
}

/* ── Top Stories ──────────────────────────────────────────────────────── */
.np-top-stories { margin-bottom: 40px; }
.np-top-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.np-top-main a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.np-top-main-img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}
.np-top-main-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.np-top-main:hover .np-top-main-img img {
  transform: scale(1.03);
}
.np-top-main-body h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.np-top-main-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 10px;
}
.np-meta {
  font-size: 12px;
  color: #aaa;
}

.np-top-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.np-top-side-item a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.np-top-side-item:last-child a { border-bottom: none; }
.np-top-side-img {
  flex-shrink: 0;
  width: 90px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
}
.np-top-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.np-top-side-body h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
}
.np-top-side-body time {
  font-size: 11px;
  color: #aaa;
}

/* ── Category Sections ────────────────────────────────────────────────── */
.np-cat-section { margin-bottom: 40px; }
.np-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.np-cat-lead a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.np-cat-lead-img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}
.np-cat-lead-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.np-cat-lead:hover .np-cat-lead-img img {
  transform: scale(1.03);
}
.np-cat-lead h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
}
.np-cat-lead p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 6px;
}
.np-cat-lead time {
  font-size: 11px;
  color: #aaa;
}

.np-cat-list {
  display: flex;
  flex-direction: column;
}
.np-cat-list-item a {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.np-cat-list-item:last-child a { border-bottom: none; }
.np-cat-num {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 800;
  color: #e8e8e8;
  line-height: 1;
  width: 36px;
}
.np-cat-list-text h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px;
}
.np-cat-list-text time {
  font-size: 11px;
  color: #aaa;
}

/* ── News Portal — Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .np-top-layout { grid-template-columns: 1fr; }
  .np-cat-grid { grid-template-columns: 1fr; }
  .np-top-main-body h3 { font-size: 18px; }
  .np-ticker-list { animation-duration: 12s; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE TEMPLATE 3 — SEARCH (MINIMALIST / GOOGLE-STYLE)
   Clean centered search with category chips, stats, and recent articles
   ═══════════════════════════════════════════════════════════════════════════ */

.sh-home {
  margin: 0 auto;
}

/* ── Hero Search Section ──────────────────────────────────────────────── */
.sh-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: #fff;
}
.sh-hero-inner {
  text-align: center;
  width: 100%;
  max-width: 640px;
  padding: 60px 20px 40px;
}
.sh-logo {
  margin-bottom: 24px;
}
.sh-logo-img {
  max-height: 80px;
  width: auto;
}
.sh-site-name {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin: 0;
  letter-spacing: -1px;
}
.sh-tagline {
  font-size: 16px;
  color: #888;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* ── Search Box ───────────────────────────────────────────────────────── */
.sh-search-box {
  position: relative;
  margin-bottom: 28px;
}
.sh-search-form {
  margin: 0;
}
.sh-search-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 100px;
  padding: 4px 5px 4px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.sh-search-input-wrap:focus-within {
  border-color: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.sh-search-icon {
  color: #999;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}
.sh-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 0;
  background: transparent;
  color: #111;
  font-family: inherit;
}
.sh-search-input::placeholder { color: #bbb; }
.sh-search-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.sh-search-btn:hover {
  background: #333;
  transform: scale(1.02);
}

/* ── Quick Links / Chips ──────────────────────────────────────────────── */
.sh-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.sh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.sh-chip:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.sh-chip:hover .sh-chip-count {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.sh-chip-count {
  padding: 1px 7px;
  background: #e8e8e8;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  transition: background .15s, color .15s;
}

/* ── Stats Bar ────────────────────────────────────────────────────────── */
.sh-stats {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 30px 20px;
}
.sh-stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.sh-stat {
  text-align: center;
}
.sh-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}
.sh-stat-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ── Section Titles ───────────────────────────────────────────────────── */
.sh-section-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0 0 24px;
  text-align: center;
}

/* ── Recent Articles ──────────────────────────────────────────────────── */
.sh-recent {
  padding: 50px 20px;
}
.sh-recent-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sh-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.sh-recent-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.sh-recent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.sh-recent-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sh-recent-card-img {
  overflow: hidden;
}
.sh-recent-card-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.sh-recent-card:hover .sh-recent-card-img img {
  transform: scale(1.05);
}
.sh-recent-card-body {
  padding: 16px;
}
.sh-recent-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff027f;
  margin-bottom: 6px;
}
.sh-recent-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #111;
}
.sh-recent-card-body time {
  font-size: 12px;
  color: #aaa;
}
.sh-recent-more {
  text-align: center;
}
.sh-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #111;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.sh-btn:hover {
  background: #333;
  color: #fff;
  transform: scale(1.02);
}

/* ── Category Cards ───────────────────────────────────────────────────── */
.sh-categories {
  padding: 0 20px 60px;
  background: #fafafa;
}
.sh-categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 50px;
}
.sh-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sh-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #f0f0f0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sh-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: #ddd;
}
.sh-cat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  font-size: 20px;
  color: #555;
  margin-bottom: 14px;
  transition: background .2s, color .2s;
}
.sh-cat-card:hover .sh-cat-icon {
  background: #111;
  color: #fff;
}
.sh-cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111;
}
.sh-cat-count {
  font-size: 12px;
  color: #999;
}

/* ── Page Content ─────────────────────────────────────────────────────── */
.sh-page-content {
  padding: 40px 20px;
}
.sh-page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Search Template — Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .sh-hero { min-height: 60vh; }
  .sh-site-name { font-size: 32px; }
  .sh-search-btn { padding: 8px 18px; font-size: 13px; }
  .sh-stats-inner { gap: 30px; }
  .sh-stat-number { font-size: 24px; }
  .sh-recent-grid { grid-template-columns: 1fr; }
  .sh-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sh-cat-grid { grid-template-columns: 1fr; }
  .sh-stats-inner { flex-wrap: wrap; gap: 20px; }
  .sh-stat { min-width: 40%; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ALL HOMEPAGE TEMPLATES — DARK MODE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Magazine Grid Dark */
[data-theme="dark"] .mh-grid-card {
  background: #1e1e30;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
[data-theme="dark"] .mh-grid-title { color: #e2e8f0; }
[data-theme="dark"] .mh-grid-card-img,
[data-theme="dark"] .mh-cat-featured-img,
[data-theme="dark"] .mh-cat-item-img { background: #2a2a40; }
[data-theme="dark"] .mh-section-header { border-bottom-color: #e2e8f0; }
[data-theme="dark"] .mh-section-header h2 { color: #e2e8f0; }
[data-theme="dark"] .mh-cat-featured h3,
[data-theme="dark"] .mh-cat-item h4 { color: #e2e8f0; }
[data-theme="dark"] .mh-cat-item a { border-bottom-color: #2a2a40; }

/* News Portal Dark */
[data-theme="dark"] .np-section-title { border-bottom-color: #e2e8f0; }
[data-theme="dark"] .np-section-title h2 { color: #e2e8f0; }
[data-theme="dark"] .np-top-main-body h3,
[data-theme="dark"] .np-top-side-body h4,
[data-theme="dark"] .np-cat-lead h3,
[data-theme="dark"] .np-cat-list-text h4 { color: #e2e8f0; }
[data-theme="dark"] .np-top-main-img,
[data-theme="dark"] .np-top-side-img,
[data-theme="dark"] .np-cat-lead-img { background: #2a2a40; }
[data-theme="dark"] .np-top-side-item a,
[data-theme="dark"] .np-cat-list-item a { border-bottom-color: #2a2a40; }
[data-theme="dark"] .np-ticker { border-top-color: #e01; border-bottom-color: #2a2a40; }
[data-theme="dark"] .np-ticker-list li a { color: #94a3b8; }
[data-theme="dark"] .np-cat-num { color: #2a2a40; }

/* Search Template Dark */
[data-theme="dark"] .sh-hero { background: #16162a; }
[data-theme="dark"] .sh-site-name { color: #e2e8f0; }
[data-theme="dark"] .sh-tagline { color: #94a3b8; }
[data-theme="dark"] .sh-search-input-wrap {
  background: #1e1e30;
  border-color: #2a2a40;
}
[data-theme="dark"] .sh-search-input-wrap:focus-within {
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
[data-theme="dark"] .sh-search-input { color: #e2e8f0; }
[data-theme="dark"] .sh-search-icon { color: #666; }
[data-theme="dark"] .sh-search-btn { background: #e2e8f0; color: #16162a; }
[data-theme="dark"] .sh-search-btn:hover { background: #fff; }
[data-theme="dark"] .sh-chip {
  background: #1e1e30;
  border-color: #2a2a40;
  color: #94a3b8;
}
[data-theme="dark"] .sh-chip:hover {
  background: #e2e8f0;
  color: #16162a;
  border-color: #e2e8f0;
}
[data-theme="dark"] .sh-chip-count { background: #2a2a40; color: #666; }
[data-theme="dark"] .sh-stats { background: #1a1a2e; border-color: #2a2a40; }
[data-theme="dark"] .sh-stat-number { color: #e2e8f0; }
[data-theme="dark"] .sh-stat-label { color: #666; }
[data-theme="dark"] .sh-recent-card {
  background: #1e1e30;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
[data-theme="dark"] .sh-recent-card-body h3 { color: #e2e8f0; }
[data-theme="dark"] .sh-recent-card-img { background: #2a2a40; }
[data-theme="dark"] .sh-btn { background: #e2e8f0; color: #16162a; }
[data-theme="dark"] .sh-btn:hover { background: #fff; }
[data-theme="dark"] .sh-categories { background: #16162a; }
[data-theme="dark"] .sh-cat-card {
  background: #1e1e30;
  border-color: #2a2a40;
}
[data-theme="dark"] .sh-cat-card h3 { color: #e2e8f0; }
[data-theme="dark"] .sh-cat-icon { background: #2a2a40; color: #94a3b8; }
[data-theme="dark"] .sh-cat-card:hover .sh-cat-icon { background: #e2e8f0; color: #16162a; }
[data-theme="dark"] .sh-section-title { color: #e2e8f0; }
