/* ============================================
   THE IRON LEDGER — Custom Dark Theme
   Built Not Born. Forged by discipline.
   ============================================ */

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

:root {
  --bg-primary: #0a0a0a;
  --bg-card: #141414;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #1e1e1e;
  --accent-red: #e63946;
  --accent-red-hover: #ff4d5a;
  --accent-gold: #d4a017;
  --accent-gold-hover: #e8b520;
  --accent-green: #2ecc71;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --border-color: #2a2a2a;
  --border-subtle: #222;
  --nav-height: 70px;
  --max-width: 1200px;
  --content-width: 800px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-height);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

a {
  color: var(--accent-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-red-hover);
}

p { margin-bottom: 1.2em; }

strong { color: #fff; }

blockquote {
  border-left: 4px solid var(--accent-red);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-style: italic;
}

code {
  background: var(--bg-secondary);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent-gold);
}

pre {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2.5rem 0;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ---------- Layout Containers ---------- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.content-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  gap: 0;
}

.nav-logo .logo-iron {
  color: #fff;
}

.nav-logo .logo-ledger {
  color: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  margin-top: 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  text-transform: none;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--accent-red);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-tagline .highlight {
  color: var(--accent-red);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 2px solid var(--accent-red);
}

.hero-cta:hover {
  background: transparent;
  color: var(--accent-red);
}

/* ---------- Category Grid ---------- */
.categories-section {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: 0.5rem auto 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

.category-card .cat-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.category-card .cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.category-card .cat-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ---------- Post Cards Grid ---------- */
.posts-section {
  padding: 4rem 0;
}

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

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.post-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.post-card .card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
}

.post-card .card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.post-card .card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.post-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.post-card .card-read-more {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Newsletter CTA ---------- */
.newsletter-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.newsletter-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.newsletter-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent-red);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  padding: 0.9rem 1.8rem;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent-red-hover);
}

/* ---------- Post Layout ---------- */
.post-header {
  padding: 3rem 0 2rem;
  text-align: center;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--accent-red);
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.post-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.post-meta-header {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-meta-header span {
  margin: 0 0.5rem;
}

/* Post content area */
.post-content-wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.post-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
}

/* Post content typography */
.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent-red);
  display: inline-block;
}

.post-content h2::after {
  content: '';
  display: block;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.post-content ul, .post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Table of Contents */
.toc-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.toc-container h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.toc-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-container li {
  margin-bottom: 0.5rem;
}

.toc-container a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.toc-container a:hover {
  color: var(--accent-red);
}

/* ---------- Tables (Quick Picks) ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

thead {
  background: var(--bg-tertiary);
}

th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  text-align: left;
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-red);
  font-weight: 400;
}

td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-subtle) !important;
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  vertical-align: middle;
}

/* Override inline styles from posts that were built for white theme */
td[style],
th[style] {
  color: var(--text-secondary) !important;
  border-color: var(--border-subtle) !important;
}

th[style] {
  color: var(--accent-gold) !important;
}

tr[style] {
  border-color: var(--border-subtle) !important;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(230, 57, 70, 0.05);
}

td a {
  color: var(--accent-red);
  font-weight: 600;
}

/* Buy buttons in tables */
td a[href*="amazon"] {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}

td a[href*="amazon"]:hover {
  background: var(--accent-red-hover);
  color: #fff;
}

/* ---------- Product Review Styles ---------- */

/* Pros and Cons */
.post-content strong:first-child {
  /* Intentionally empty — specificity anchor */
}

/* Style Pros/Cons headings */
.post-content li {
  color: var(--text-secondary);
}

/* Integrated list with pros styling */
.post-content ul li:first-child,
.post-content p + ul li {
  /* keep default */
}

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-best-seller {
  background: var(--accent-red);
  color: #fff;
}

.badge-our-pick {
  background: var(--accent-gold);
  color: #000;
}

.badge-budget {
  background: var(--accent-green);
  color: #000;
}

/* Star ratings */
.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ---------- "You May Also Like" ---------- */
.related-posts {
  margin-top: 3rem;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: none;
  display: block;
}

.related-posts h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: 0.5rem auto 0;
}

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

/* ---------- Category Page ---------- */
.category-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

.category-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Page Layout ---------- */
.page-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-content h1,
.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.footer-brand .footer-logo .logo-iron {
  color: #fff;
}

.footer-brand .footer-logo .logo-ledger {
  color: var(--accent-red);
}

.footer-brand .footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--accent-red);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--accent-red);
}

.btn-outline {
  background: transparent;
  color: var(--accent-red);
  border-color: var(--accent-red);
}

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

.btn-gold {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--accent-gold);
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-red { color: var(--accent-red); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* ---------- Minima Overrides ---------- */
/* Kill all default minima styles */
.site-header,
.site-footer.minima-footer,
.wrapper {
  /* Override minima defaults */
}

/* Ensure our styles win */
body .site-header {
  display: none !important;
}

body .site-footer:not(.iron-footer) {
  display: none;
}

/* Override minima's wrapper */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Override minima's post list on home */
.post-list {
  list-style: none;
  padding: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .hero-tagline {
    font-size: 2.2rem;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

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

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .post-title {
    font-size: 2.2rem;
  }

  .post-content {
    padding: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    display: none;
    padding-left: 1rem;
    margin-top: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .category-card {
    padding: 1.2rem 0.8rem;
  }

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

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .post-card {
    padding: 1.3rem;
  }
}

/* ---------- Selection ---------- */
::selection {
  background: var(--accent-red);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}
