/*
Theme Name: AccurateTip Blog
Theme URI: https://www.accuratetip.com/blog
Author: Beta Web Analysis Limited
Author URI: https://www.accuratetip.com
Description: Official editorial blog theme for AccurateTip — news-style layout matching the main site colour system, dark/light mode, clean typography.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: accuratetip-blog
*/

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Sora:wght@400;600;700;800&display=swap');

/* ============================================
   DESIGN TOKENS — DARK MODE
   ============================================ */
:root {
  --bg-primary:    #0a0d14;
  --bg-secondary:  #111621;
  --bg-tertiary:   #161d2a;
  --bg-elevated:   #1a2235;
  --bg-glass:      rgba(17,22,33,0.92);

  --text-primary:   #f0f4fc;
  --text-secondary: #8b95a8;
  --text-muted:     #5a6478;

  --primary:       #10d9a0;
  --primary-light: #4aedc4;
  --primary-dark:  #0ba77a;
  --primary-glow:  rgba(16,217,160,0.18);

  --accent:        #6366f1;
  --accent-glow:   rgba(99,102,241,0.15);

  --success:    #22c55e;
  --success-bg: rgba(34,197,94,0.1);
  --warning:    #f59e0b;
  --warning-bg: rgba(245,158,11,0.1);
  --danger:     #ef4444;
  --danger-bg:  rgba(239,68,68,0.1);

  --gradient-primary: linear-gradient(135deg, #10d9a0, #6366f1);

  --border-subtle:  rgba(255,255,255,0.06);
  --border-default: rgba(255,255,255,0.10);

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-card-hover: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px var(--primary);

  --font-display: 'Sora', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --text-xs:   0.72rem;
  --text-sm:   0.85rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  --z-sticky: 20; --z-fixed: 30;
  --container-max: 1320px;
  --container-pad: 1.5rem;
}

[data-theme="light"] {
  --bg-primary:    #f7f8fa;
  --bg-secondary:  #ffffff;
  --bg-tertiary:   #f1f4f8;
  --bg-elevated:   #ffffff;
  --bg-glass:      rgba(255,255,255,0.94);

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --border-subtle:  rgba(0,0,0,0.06);
  --border-default: rgba(0,0,0,0.10);

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 28px rgba(0,0,0,0.10);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 6px 22px rgba(0,0,0,0.12), 0 0 0 1px var(--primary);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  transition: background-color var(--transition-base), color var(--transition-base);
}

::selection { background: var(--primary); color: #0a0d14; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================
   ANIMATIONS (minimal — only fade/slide)
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dotPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

.animate-in { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

/* ============================================
   TOP BAR
   ============================================ */
.header-topbar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 6px 0;
  font-size: var(--text-xs);
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar-brand-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary);
}
.topbar-meta {
  display: flex; align-items: center; gap: 1.5rem;
  color: var(--text-muted);
}
.topbar-meta span { display: flex; align-items: center; gap: 0.4rem; }
.topbar-meta strong { color: var(--text-secondary); font-weight: 600; }
.topbar-sep { width: 1px; height: 12px; background: var(--border-default); }
.topbar-date { font-family: var(--font-mono); color: var(--text-muted); font-size: 0.7rem; }

/* Live dot */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--danger); display: inline-block;
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
}
.header-main-new {
  background: var(--bg-glass);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}
.header-inner-new {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}

/* Logo */
.logo-new {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition-base);
}
.logo-new:hover .logo-mark { transform: scale(1.06); }
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-wordmark {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: var(--text-primary); line-height: 1; display: flex; align-items: center; gap: 4px;
}
.logo-wordmark .accent { color: var(--primary); }
.logo-section {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-top: 2px;
}

/* Nav */
.blog-nav { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.blog-nav a {
  padding: 0.5rem 0.875rem; font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-md);
  transition: all var(--transition-fast); white-space: nowrap;
}
.blog-nav a:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.blog-nav a.active {
  color: var(--primary); background: rgba(16,217,160,0.08);
  font-weight: 600;
}
.nav-divider { width: 1px; height: 18px; background: var(--border-subtle); margin: 0 0.25rem; }
.nav-back-main {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.875rem; font-size: var(--text-sm); font-weight: 600;
  color: var(--text-muted); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); transition: all var(--transition-fast);
}
.nav-back-main:hover { color: var(--primary); border-color: var(--primary); background: rgba(16,217,160,0.05); }
.nav-back-main svg { width: 13px; height: 13px; }

/* Header actions */
.header-actions-new { display: flex; align-items: center; gap: 0.5rem; }
.action-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition-fast);
}
.action-btn:hover { color: var(--text-primary); border-color: var(--border-default); }
.action-btn svg { width: 17px; height: 17px; }
.theme-icon-wrapper { position: relative; width: 17px; height: 17px; }
.sun-icon, .moon-icon { position: absolute; inset: 0; transition: all var(--transition-base); }
[data-theme="dark"]  .sun-icon  { opacity: 1; transform: rotate(0); }
[data-theme="dark"]  .moon-icon { opacity: 0; transform: rotate(-90deg); }
[data-theme="light"] .sun-icon  { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .moon-icon { opacity: 1; transform: rotate(0); }
.header-cta-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.125rem; background: var(--gradient-primary);
  border-radius: var(--radius-md); font-size: var(--text-sm);
  font-weight: 700; color: #0a0d14;
  transition: all var(--transition-base); box-shadow: 0 2px 10px var(--primary-glow);
  font-family: var(--font-display);
}
.header-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--primary-glow); color: #0a0d14; }
.mobile-menu-btn {
  width: 36px; height: 36px; display: none; align-items: center; justify-content: center;
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); color: var(--text-secondary); cursor: pointer;
}
.mobile-menu-btn svg { width: 18px; height: 18px; }

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.news-ticker {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.55rem 0;
  overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 1.5rem; }
.ticker-label {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #0a0d14; background: var(--primary);
  padding: 3px 8px; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.ticker-items {
  display: flex; gap: 2.5rem; overflow: hidden;
  white-space: nowrap; flex: 1;
}
.ticker-items a {
  font-size: var(--text-xs); color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.ticker-items a:hover { color: var(--primary); }
.ticker-sep { color: var(--border-default); font-size: 0.7rem; }

/* ============================================
   PAGE HEADER / SECTION TITLE BAR
   ============================================ */
.page-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}
.page-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.page-header-label {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary);
  margin-bottom: 0.5rem;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text-primary);
}
.page-header-desc {
  font-size: var(--text-sm); color: var(--text-secondary);
  margin-top: 0.625rem; line-height: 1.6; max-width: 600px;
}
.page-header-meta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: var(--text-xs); color: var(--text-muted);
}
.page-header-meta span { display: flex; align-items: center; gap: 0.4rem; }
.page-header-meta strong { color: var(--primary); font-weight: 700; font-family: var(--font-display); }

/* Category bar */
.category-bar {
  display: flex; align-items: center; gap: 0.375rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.cat-pill {
  padding: 0.35rem 0.875rem; font-size: var(--text-xs); font-weight: 600;
  color: var(--text-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full); cursor: pointer;
  transition: all var(--transition-fast); text-decoration: none;
}
.cat-pill:hover { border-color: var(--primary); color: var(--primary); }
.cat-pill.active {
  background: var(--primary); border-color: var(--primary);
  color: #0a0d14; font-weight: 700;
}

/* ============================================
   FEATURED / LEAD ARTICLE
   ============================================ */
.lead-article {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 0; margin-bottom: 2.5rem;
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card); transition: all var(--transition-base);
}
.lead-article:hover { box-shadow: var(--shadow-card-hover); }
.lead-article-image {
  position: relative; height: 420px; overflow: hidden;
  background: var(--bg-tertiary);
}
.lead-article-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.lead-article:hover .lead-article-image img { transform: scale(1.03); }

/* Premium image placeholder for featured article — no emoji, just editorial gradient */
.img-placeholder {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.img-placeholder-gradient {
  width: 100%; height: 100%; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1628 40%, #0a1430 70%, #060a14 100%);
}
.img-placeholder-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
}
.img-placeholder-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,217,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,217,160,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.img-placeholder-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: rgba(16,217,160,0.35);
}
/* Category label overlay */
.img-cat-label {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--primary); color: #0a0d14;
  padding: 4px 10px; border-radius: 3px;
}
.img-cat-label.alt {
  background: rgba(10,13,20,0.75); color: var(--primary);
  border: 1px solid rgba(16,217,160,0.4); backdrop-filter: blur(4px);
}

.lead-article-body {
  padding: 2rem 2rem 2rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border-subtle);
}
.lead-article-cat {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary);
  margin-bottom: 0.875rem;
}
.lead-article-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800; line-height: 1.2; color: var(--text-primary);
  margin-bottom: 0.875rem;
}
.lead-article-title a { color: inherit; }
.lead-article-title a:hover { color: var(--primary); }
.lead-article-excerpt {
  font-size: var(--text-sm); color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 1.5rem;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.article-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: var(--text-xs); color: var(--text-muted);
  padding-top: 1.25rem; border-top: 1px solid var(--border-subtle);
}
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-meta svg { width: 13px; height: 13px; flex-shrink: 0; }
.article-meta .author-name { font-weight: 600; color: var(--text-secondary); }

/* Read more */
.read-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary);
  margin-top: 1.25rem;
  transition: gap var(--transition-fast);
}
.read-link:hover { gap: 0.6rem; }
.read-link svg { width: 13px; height: 13px; }

/* ============================================
   MAIN LAYOUT
   ============================================ */
.blog-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2.5rem; margin-bottom: 4rem;
  align-items: start;
}
.blog-main { min-width: 0; }

/* ============================================
   ARTICLE GRID
   ============================================ */
.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-bottom: 2rem;
}

/* Standard post card — editorial news style */
.post-card {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: all var(--transition-base);
  display: flex; flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }

.post-card-thumb {
  position: relative; height: 200px; overflow: hidden;
  background: var(--bg-tertiary); display: block;
}
.post-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb .img-placeholder { height: 200px; }

.post-card-cat-tag {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--primary); color: #0a0d14;
  padding: 3px 8px; border-radius: 3px;
}

.post-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-card-cat-label {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary);
  margin-bottom: 0.5rem;
}
.post-card-title {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; line-height: 1.3; color: var(--text-primary);
  margin-bottom: 0.625rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--primary); }
.post-card-excerpt {
  font-size: var(--text-xs); color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.875rem; border-top: 1px solid var(--border-subtle); margin-top: auto;
}
.post-card-byline { font-size: var(--text-xs); color: var(--text-muted); }
.post-card-byline strong { color: var(--text-secondary); font-weight: 600; }

/* List-style card (sidebar recent posts) */
.list-card {
  display: flex; gap: 0.875rem; padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-subtle); transition: all var(--transition-fast);
}
.list-card:last-child { border-bottom: none; padding-bottom: 0; }
.list-card:hover { transform: translateX(3px); }
.list-card-thumb {
  width: 72px; height: 56px; flex-shrink: 0; border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-tertiary);
}
.list-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-card-thumb .img-placeholder { height: 56px; }
.list-card-info { flex: 1; min-width: 0; }
.list-card-cat {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--primary);
  margin-bottom: 0.25rem;
}
.list-card-title {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.list-card-title a { color: inherit; }
.list-card-title a:hover { color: var(--primary); }
.list-card-date { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.25rem; font-family: var(--font-mono); }

/* ============================================
   PAGINATION
   ============================================ */
.blog-pagination {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.75rem 0; border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap; gap: 1rem;
}
.pagination-info { font-size: var(--text-xs); color: var(--text-muted); }
.pagination-links { display: flex; gap: 0.375rem; align-items: center; }
.page-btn {
  min-width: 36px; height: 36px; padding: 0 0.625rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); font-size: var(--text-xs); font-weight: 600;
  color: var(--text-secondary); text-decoration: none;
  transition: all var(--transition-fast); cursor: pointer;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.current { background: var(--primary); border-color: var(--primary); color: #0a0d14; }
.page-btn svg { width: 14px; height: 14px; }

/* ============================================
   SIDEBAR
   ============================================ */
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: 90px; }

.sidebar-block {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sidebar-block-title {
  padding: 0.875rem 1.25rem;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary);
  border-bottom: 2px solid var(--primary); background: var(--bg-tertiary);
}
.sidebar-block-body { padding: 1.25rem; }

/* Prediction CTA — clean, no emojis */
.predictions-cta {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
}
.predictions-cta-header {
  padding: 1rem 1.25rem; background: var(--gradient-primary);
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: #0a0d14;
}
.predictions-cta-body { padding: 1.25rem; }
.predictions-cta-body h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.3;
}
.predictions-cta-body p {
  font-size: var(--text-xs); color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.65;
}
.cta-btn {
  display: block; width: 100%; padding: 0.75rem;
  background: var(--gradient-primary); border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.07em; color: #0a0d14;
  text-align: center; text-decoration: none;
  transition: all var(--transition-base); box-shadow: 0 3px 12px var(--primary-glow);
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--primary-glow); color: #0a0d14; }
.cta-btn-outline {
  display: block; width: 100%; padding: 0.65rem;
  background: transparent; border: 1px solid var(--border-default);
  border-radius: var(--radius-md); font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-secondary);
  text-align: center; text-decoration: none;
  transition: all var(--transition-fast); margin-top: 0.5rem;
}
.cta-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Tags */
.tags-list { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.tag-item {
  padding: 0.3rem 0.7rem; background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-full);
  font-size: 0.7rem; color: var(--text-secondary); text-decoration: none;
  transition: all var(--transition-fast);
}
.tag-item:hover { border-color: var(--primary); color: var(--primary); background: rgba(16,217,160,0.05); }

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 0.625rem; }
.newsletter-input {
  width: 100%; padding: 0.65rem 0.875rem;
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-size: var(--text-sm); outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.newsletter-input::placeholder { color: var(--text-muted); font-size: var(--text-xs); }
.newsletter-submit {
  width: 100%; padding: 0.65rem; background: var(--gradient-primary);
  border-radius: var(--radius-md); font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; color: #0a0d14; cursor: pointer;
  transition: all var(--transition-base); border: none;
}
.newsletter-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 14px var(--primary-glow); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 0.375rem; flex-wrap: wrap;
  font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.75rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border-default); }
.breadcrumb .current { color: var(--text-secondary); font-weight: 500; }

/* ============================================
   SINGLE POST
   ============================================ */
.single-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2.5rem; margin-bottom: 4rem;
  align-items: start;
}

/* Hero image — full-width, tall */
.post-hero {
  position: relative; height: 480px; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 2.5rem; box-shadow: var(--shadow-lg);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero .img-placeholder { height: 480px; }
.post-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,13,20,0.88) 0%, rgba(10,13,20,0.2) 60%, transparent 100%);
}
.post-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem; z-index: 2;
}
.post-hero-cat {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--primary); color: #0a0d14;
  padding: 4px 10px; border-radius: 3px; display: inline-block;
  margin-bottom: 1rem;
}
.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.15; color: #fff;
  margin-bottom: 1.25rem; max-width: 820px;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
}
.post-hero-meta span { display: flex; align-items: center; gap: 0.4rem; }
.post-hero-meta svg { width: 13px; height: 13px; }

/* Article body */
.post-article {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.post-article p {
  font-size: 1.0625rem; color: var(--text-secondary);
  line-height: 1.9; margin-bottom: 1.5rem;
}
.post-article h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--text-primary); margin: 2.5rem 0 1rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border-subtle);
}
.post-article h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-primary); margin: 2rem 0 0.875rem;
}
.post-article h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin: 1.5rem 0 0.75rem;
}
.post-article ul, .post-article ol {
  margin: 1rem 0 1.5rem 1.5rem; list-style: disc;
}
.post-article ol { list-style: decimal; }
.post-article li {
  font-size: 1.0625rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 0.5rem;
}
.post-article a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.post-article a:hover { color: var(--primary-light); }
.post-article strong { color: var(--text-primary); font-weight: 700; }
.post-article em { font-style: italic; }
.post-article blockquote {
  margin: 2rem 0; padding: 1.25rem 1.75rem;
  border-left: 4px solid var(--primary);
  background: var(--bg-tertiary); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.125rem; font-style: italic;
  color: var(--text-primary); line-height: 1.8;
}
.post-article blockquote cite {
  display: block; margin-top: 0.75rem;
  font-size: var(--text-sm); font-style: normal;
  color: var(--primary); font-weight: 600;
}
.post-article img {
  border-radius: var(--radius-lg); margin: 1.5rem 0;
  box-shadow: var(--shadow-md); width: 100%;
}
.post-article pre {
  background: var(--bg-primary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0;
}
.post-article code {
  font-family: var(--font-mono); font-size: 0.875rem; color: var(--primary);
  background: rgba(16,217,160,0.08); padding: 2px 6px; border-radius: 4px;
}
.post-article pre code { background: none; color: var(--text-primary); padding: 0; }
.post-article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: var(--text-sm); }
.post-article thead th {
  background: var(--bg-tertiary); color: var(--text-primary);
  font-family: var(--font-display); font-weight: 700; text-align: left;
  padding: 0.875rem 1rem; border-bottom: 2px solid var(--primary);
}
.post-article tbody td {
  padding: 0.875rem 1rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.post-article tbody tr:hover td { background: var(--bg-tertiary); }

/* Post footer: tags + share */
.post-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; background: var(--bg-secondary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.post-tags-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.post-tags-label { font-size: var(--text-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.post-tag {
  padding: 0.3rem 0.7rem; background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-full);
  font-size: 0.7rem; color: var(--text-secondary); text-decoration: none;
  transition: all var(--transition-fast);
}
.post-tag:hover { border-color: var(--primary); color: var(--primary); }
.share-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.share-label { font-size: var(--text-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.share-btn {
  padding: 0.35rem 0.75rem; background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  font-size: 0.72rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; text-decoration: none; transition: all var(--transition-fast);
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(16,217,160,0.05); }

/* Author box */
.author-box {
  display: flex; gap: 1.5rem; padding: 1.5rem;
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); margin-bottom: 1.5rem;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: #0a0d14; overflow: hidden; border: 2px solid rgba(16,217,160,0.3);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.25rem; }
.author-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
.author-bio { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }

/* Post navigation */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
.post-nav-item {
  padding: 1.125rem; background: var(--bg-secondary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  text-decoration: none; transition: border-color var(--transition-fast);
}
.post-nav-item:hover { border-color: var(--primary); }
.post-nav-dir {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.375rem;
}
.post-nav-title {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-nav-item.next { text-align: right; }

/* Related articles */
.related-section { margin-bottom: 1.5rem; }
.section-label {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* Comments */
.comments-wrap {
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem;
}
.comment-item {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.comment-item:last-of-type { border-bottom: none; }
.comment-avatar-sm {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  color: var(--primary); overflow: hidden;
}
.comment-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.comment-author { font-size: var(--text-sm); font-weight: 700; color: var(--text-primary); }
.comment-date { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); }
.comment-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.75; }

/* Comment form */
.comment-form-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.cf-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.25rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.375rem; }
.cf-field label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.cf-field input, .cf-field textarea {
  padding: 0.65rem 0.875rem; background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  color: var(--text-primary); font-size: var(--text-sm); outline: none;
  transition: border-color var(--transition-fast);
}
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.cf-field textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.cf-submit {
  padding: 0.75rem 2rem; background: var(--gradient-primary);
  border-radius: var(--radius-md); font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; color: #0a0d14; cursor: pointer;
  border: none; transition: all var(--transition-base);
  box-shadow: 0 3px 10px var(--primary-glow);
}
.cf-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 18px var(--primary-glow); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem 1.5rem; font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700; border-radius: var(--radius-md);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: all var(--transition-base); text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--gradient-primary); color: #0a0d14; box-shadow: 0 3px 12px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-glow); color: #0a0d14; }
.btn-secondary { background: var(--bg-secondary); color: var(--text-primary); border: 1px solid var(--border-default); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn svg { width: 16px; height: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary); border-top: 3px solid var(--primary);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-subtle);
}
.footer-brand-desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-social-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tertiary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); color: var(--text-muted);
  text-decoration: none; transition: all var(--transition-fast);
}
.footer-social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-social-btn svg { width: 15px; height: 15px; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-primary);
  margin-bottom: 1.25rem; padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: var(--text-sm); color: var(--text-secondary);
  transition: all var(--transition-fast); padding: 0.1rem 0;
}
.footer-links a:hover { color: var(--primary); padding-left: 3px; }
.footer-bottom {
  padding: 1.25rem 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: var(--text-xs); color: var(--text-muted);
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--primary); }
.footer-disclaimer {
  font-size: 0.65rem; color: var(--text-muted);
  padding: 1rem 0; border-top: 1px solid var(--border-subtle); margin-top: 0;
  line-height: 1.7; text-align: center;
}
.footer-disclaimer a { color: var(--primary); }

/* Visually hidden */
.visually-hidden { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* Reading progress */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gradient-primary); z-index: 9999;
  transition: width 0.08s linear; border-radius: 0 2px 2px 0;
}

/* Back to top */
#back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50;
  width: 40px; height: 40px; background: var(--bg-secondary);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); cursor: pointer;
  opacity: 0; visibility: hidden; transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}
#back-to-top:hover { border-color: var(--primary); color: var(--primary); }
#back-to-top svg { width: 16px; height: 16px; }

/* Mobile drawer */
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px); z-index: 29; opacity: 0;
  visibility: hidden; transition: all 0.25s;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 300px;
  background: var(--bg-secondary); border-left: 1px solid var(--border-subtle);
  z-index: 30; transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column; overflow: hidden;
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; border-bottom: 1px solid var(--border-subtle); flex-shrink: 0;
}
.mobile-drawer-body { flex: 1; overflow-y: auto; padding: 1rem; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0.875rem; margin-bottom: 0.375rem;
  border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); border-color: var(--primary); background: rgba(16,217,160,0.05); }
body.drawer-open { overflow: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; border: 2px solid var(--bg-secondary); }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
* { scrollbar-width: thin; scrollbar-color: var(--bg-elevated) var(--bg-secondary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .blog-layout, .single-layout { grid-template-columns: 1fr 260px; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lead-article { grid-template-columns: 1fr 360px; }
}
@media (max-width: 900px) {
  .blog-layout, .single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .lead-article { grid-template-columns: 1fr; }
  .lead-article-image { height: 300px; }
  .lead-article-body { border-left: none; border-top: 1px solid var(--border-subtle); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu-btn { display: flex; }
  .blog-nav { display: none; }
}
@media (max-width: 768px) {
  :root { --container-pad: 1rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .post-hero { height: 300px; border-radius: var(--radius-lg); }
  .post-article { padding: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .post-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-meta { display: none; }
  .header-cta-btn { display: none; }
}
@media (max-width: 480px) {
  :root { --container-pad: 0.875rem; }
  .page-header { padding: 1.75rem 0 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .post-hero { height: 240px; }
  .post-hero-overlay { padding: 1.25rem; }
  .post-footer-bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-in { opacity: 1; animation: none; }
}
