/*
 * Bigtricks Theme — Custom CSS
 * Tailwind handles the heavy lifting; this file adds
 * theme-specific overrides and non-Tailwind utilities.
 */

/* ── Color Tokens ───────────────────────────────────── */
/*   Change these two lines to retheme the whole site.  */
:root {
  --bt-primary: #4f46e5; /* primary-600 */
  --bt-primary-dark: #4338ca; /* primary-700 */
  --bt-primary-50: #eef2ff; /* primary-50  */
  --bt-primary-200: #c7d2fe; /* primary-200 */
  --bt-primary-400: #818cf8; /* primary-400 */
  --bt-secondary: #0f172a; /* slate-950 — dark/secondary buttons */
  --bt-secondary-hover: #1e293b;
}

/* ── Glassmorphism Utility ─────────────────────────── */
.bt-glass {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(226, 232, 240, 0.75) !important;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  backdrop-filter: blur(14px) saturate(155%);
}

header.sticky.bt-glass {
  background: rgba(255, 255, 255, 0.78) !important;
}

html.dark .bt-glass {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(51, 65, 85, 0.8) !important;
  box-shadow:
    0 14px 38px rgba(2, 6, 23, 0.55),
    inset 0 1px 0 rgba(148, 163, 184, 0.12);
}

html.dark header.sticky.bt-glass {
  background: rgba(15, 23, 42, 0.78) !important;
}

@supports not (
  (-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))
) {
  .bt-glass {
    background: #ffffff !important;
  }
  html.dark .bt-glass {
    background: #0f172a !important;
  }
}

/* ── Fonts ─────────────────────────────────────────── */
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
button,
.btn,
nav a,
.wp-block-button__link {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
}

/* ── Button text color ──────────────────────────────– */

.wp-block-button__link {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ── WordPress Image Alignments ────────────────────── */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

figure.aligncenter img,
.wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

/* Left-aligned images */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

/* Right-aligned images */
.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Dark Mode ──────────────────────────────────────── */
html.dark {
  color-scheme: dark;
}

html.dark body {
  background-color: #020617; /* slate-950 */
  color: #e2e8f0;
}

html.dark .bg-white {
  background-color: #0f172a !important;
} /* slate-900 */
html.dark .bg-slate-50 {
  background-color: #0f172a !important;
}
html.dark .bg-slate-100 {
  background-color: #1e293b !important;
}
html.dark .border-slate-200 {
  border-color: #1e293b !important;
}
html.dark .border-slate-100 {
  border-color: #1e293b !important;
}
html.dark .text-slate-900 {
  color: #f1f5f9 !important;
}
html.dark .text-slate-800 {
  color: #e2e8f0 !important;
}
html.dark .text-slate-700 {
  color: #cbd5e1 !important;
}
html.dark .text-slate-600 {
  color: #94a3b8 !important;
}
html.dark .text-slate-500 {
  color: #64748b !important;
}
html.dark .shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}
html.dark .shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}
html.dark header.sticky {
  background-color: #0f172a !important;
  border-bottom-color: #1e293b !important;
}
html.dark .bt-deal-card {
  background-color: #0f172a !important;
  border-color: #1e293b !important;
}
html.dark .bt-deal-card .bt-card-thumb {
  background-color: #1e293b !important;
  border-color: #1e293b !important;
}
html.dark .bt-deal-card .sm\:border-r {
  border-color: #1e293b !important;
}
html.dark .prose {
  color: #cbd5e1;
}
html.dark .prose h1,
html.dark .prose h2,
html.dark .prose h3 {
  color: #f1f5f9;
}
html.dark .prose a {
  color: #818cf8;
}
html.dark .prose code {
  background: #1e293b;
  color: #f472b6;
}
html.dark .prose pre {
  background: #020617;
}
html.dark .prose blockquote {
  background: #1e293b;
  color: #818cf8;
  border-color: #6366f1;
}

/* Notification drawer dark */
html.dark #bt-notification-drawer {
  background-color: #0f172a;
  border-color: #1e293b;
}

/* Comment section dark */
html.dark .bt-chat-comment .bg-white {
  background-color: #1e293b !important;
  border-color: #334155 !important;
}
html.dark .bt-comment-form-wrap {
  background-color: #0f172a;
  border-color: #1e293b;
}
html.dark .bt-chat-textarea,
html.dark .bt-chat-form input {
  background-color: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}

/* ── Dark mode icon swap (moon = light, sun = dark) ─── */
html.dark .bt-dark-icon-moon {
  display: none !important;
}
html.dark .bt-dark-icon-sun {
  display: inline !important;
}

/*
 * Safety net: if OS is dark but user toggled site to light mode (no html.dark),
 * prevent any lingering media-query-based dark: Tailwind classes from applying
 * on structural elements.
 */
@media (prefers-color-scheme: dark) {
  /*
   * When OS is dark but user toggled site to LIGHT mode (no html.dark class),
   * only reset the main page-level elements. Intentionally-always-dark sections
   * like the footer (bg-slate-950) and stats bar (bg-slate-900) are NOT touched
   * here — they must stay dark in all modes.
   */
  html:not(.dark) body {
    background-color: #f8fafc !important;
    color: #1e293b !important;
  }
  html:not(.dark) header.sticky {
    background-color: #ffffff !important;
    border-bottom-color: #e2e8f0 !important;
  }
}

/* ── Scrollbar hide utility ─────────────────────────── */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── Feed container view modes ──────────────────────── */
#bt-feed-container[data-view="grid"] {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #bt-feed-container[data-view="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #bt-feed-container[data-view="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#bt-feed-container[data-view="grid"] .bt-deal-card .bt-card-inner {
  flex-direction: column !important;
}

#bt-feed-container[data-view="grid"] .bt-feed-cta {
  grid-column: 1 / -1;
}

#bt-feed-container[data-view="grid"] .bt-card-thumb {
  width: 100% !important;
  border-right: none !important;
  border-bottom: 1px solid #f1f5f9;
  height: 12rem;
}

/* ── Line clamp utilities ───────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Deal card hover lift ───────────────────────────── */
.bt-deal-card {
  position: relative;
}

/* ── Load More button loading state ────────────────── */
#bt-load-more.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
}

/* Loot deals archive overflow guards */
body.page-template-page-deals-archive #main-content {
  overflow-x: hidden;
}

body.page-template-page-deals-archive .telegram-message,
body.page-template-page-deals-archive .telegram-message * {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Referral single FAQ answer overflow guards */
body.single-referral-codes .referral-faq-answer {
  max-width: 100%;
  overflow-x: auto;
}

body.single-referral-codes .referral-faq-answer,
body.single-referral-codes .referral-faq-answer * {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.single-referral-codes .referral-faq-answer pre,
body.single-referral-codes .referral-faq-answer code,
body.single-referral-codes .referral-faq-answer table {
  max-width: 100%;
}

body.single-referral-codes .referral-faq-answer pre {
  overflow-x: auto;
}

#bt-load-more.loading .bt-load-icon {
  animation: bt-spin 0.8s linear infinite;
}

@keyframes bt-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── No more posts state ────────────────────────────── */
#bt-load-more.no-more {
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: default;
  pointer-events: none;
}

/* ── Comments — Chat Bubbles ─────────────────────────── */

.bt-chat-comment {
  padding: 0.75rem 0;
  transition: opacity 0.2s;
}

.bt-chat-comment + .bt-chat-comment {
  border-top: 1px solid #f1f5f9;
}

/* Reply link style */
.bt-reply-link a,
.comment-reply-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

/* Referral single tabs */
body.single-referral-codes .tab-content {
  display: none;
}

body.single-referral-codes .tab-content.active {
  display: block;
}

.bt-reply-link a:hover,
.comment-reply-link:hover {
  color: var(--bt-primary);
}

/* Cancel reply */
#cancel-comment-reply-link {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 700;
}

#cancel-comment-reply-link:hover {
  color: #ef4444;
}

/* ── Comment Form (chat style) ───────────────────────── */
.bt-chat-form .comment-form-comment {
  margin: 0;
}
.bt-chat-form .comment-form-author,
.bt-chat-form .comment-form-email {
  margin: 0;
}
.bt-chat-form p.comment-notes {
  display: none;
} /* hide default notes */

/* ── Notification Drawer Open State ─────────────────── */
#bt-notification-drawer.open {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

/* ── Notification item ────────────────────────────────── */
.bt-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.bt-notif-item:hover {
  background: #f8fafc;
}

html.dark .bt-notif-item:hover {
  background: #1e293b;
}

.bt-notif-img {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0;
}

/* ── Dark toggle icon states ─────────────────────────── */
html.dark .bt-dark-icon-moon {
  display: none !important;
}
html.dark .bt-dark-icon-sun {
  display: inline-block !important;
}

/* ── WP Nav Menu walker base ─────────────────────────── */
ul.menu,
ul.menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Pagination styles (classic fallback) ────────────── */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: var(--bt-primary-50);
  border-color: var(--bt-primary-200);
  color: var(--bt-primary);
}

.nav-links .current {
  background: var(--bt-primary);
  border-color: var(--bt-primary);
  color: #ffffff;
}

/* ── WP core block alignment helpers ────────────────── */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* ── Prose / article content typography ─────────────── */
.prose h2 {
  margin-top: 2rem;
}
.prose p {
  margin-bottom: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.5rem;
}

/* ── Sticky header offset for anchor links ──────────── */
[id] {
  scroll-margin-top: 5rem;
}

/* ── Copy code button "copied" state ────────────────── */
.bt-copy-code.copied,
.bt-share-copy.copied {
  background-color: #d1fae5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

/* ── Mobile Menu open state ─────────────────────────── */
#bt-mobile-menu.open {
  transform: translateX(0) !important;
}

/* ── Carousel fade transitions ──────────────────────── */
.bt-carousel-slide {
  transition: opacity 0.7s ease;
}

/* ── Store archive grid pastel cards ────────────────── */
.store-card-circle {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.store-card-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px var(--bt-primary-50);
}

/* ── Lucide icon inline sizing normalization ─────────── */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Spin animation for lucide loader ────────────────── */
.animate-spin {
  animation: bt-spin 1s linear infinite;
}

/* ── Category page hero gradient bg ─────────────────── */
.bt-cat-hero-bg {
  background: linear-gradient(
    135deg,
    var(--bt-primary-50) 0%,
    #ffffff 60%,
    #faf5ff 100%
  );
}

/* ═══════════════════════════════════════════════════════════
 * POST CONTENT STYLES — Match Editor Styles
 * Applied to .prose class wrapper on single.php
 * ═══════════════════════════════════════════════════════════ */

/* ── Post Content Container ────────────────────────── */
.prose {
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Headings: Consistent with editor styles ─────── */
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose h1 {
  font-size: 2.25rem;
}
.prose h2 {
  font-size: 1.75rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}
.prose h3 {
  font-size: 1.4rem;
}
.prose h4 {
  font-size: 1.15rem;
  color: var(--bt-primary, #4f46e5);
}

/* ── Paragraph ────────────────────────────────────── */
.prose p {
  margin-bottom: 1.25rem;
  color: #334155;
}

/* ── Links: Blue with underline ───────────────────── */
.prose a {
  color: var(--bt-primary, #4f46e5);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: var(--bt-primary-dark, #4338ca);
}

/* ── Unordered Lists ──────────────────────────────── */
.prose ul {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  list-style-type: disc;
}

.prose ul li {
  margin-bottom: 0.5rem;
  color: #334155;
  line-height: 1.7;
}

.prose ul li::marker {
  color: var(--bt-primary, #4f46e5);
  font-weight: 700;
}

/* ── Ordered Lists ────────────────────────────────── */
.prose ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  list-style-type: decimal;
}

.prose ol li {
  margin-bottom: 0.5rem;
  color: #334155;
  line-height: 1.7;
}

.prose ol li::marker {
  color: var(--bt-primary, #4f46e5);
  font-weight: 700;
}

/* ── Blockquotes ──────────────────────────────────── */
.prose blockquote {
  border-left: 4px solid var(--bt-primary, #4f46e5);
  background: var(--bt-primary-50, #eef2ff);
  padding: 1rem 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--bt-primary-dark, #4338ca);
  font-weight: 600;
}

.prose blockquote p {
  margin-bottom: 0;
}

/* ── Inline Code ──────────────────────────────────── */
.prose code {
  background: #f1f5f9;
  color: #dc2626;
  padding: 0.2em 0.45em;
  border-radius: 0.375rem;
  font-size: 0.875em;
  font-family: "Fira Code", "Courier New", monospace;
  border: 1px solid #e2e8f0;
}

/* ── Code Blocks (Pre + Code) ─────────────────────── */
.prose pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 1rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}

.prose pre code {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: "Fira Code", "Courier New", monospace;
}

/* ── Images & Figures ─────────────────────────────── */
.prose img,
.prose figure img {
  border-radius: 1.25rem;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  /* display: block; */
  /* margin: 1.5rem 0; */
}

.prose figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Tables ───────────────────────────────────────── */
.prose .wp-block-table,
.prose table {
  margin: 2.5rem 0;
  border-radius: 1rem; /* 16px */
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -2px rgba(0, 0, 0, 0.05); /* Modern large shadow */
  border: 1px solid #e2e8f0; /* Clear outer border */
}

.prose table {
  width: 100%;
  border-collapse: collapse; /* Better for internal borders */
  border-spacing: 0;
  margin: 0; /* Box model handled by wrapper figure if present */
  font-size: 0.9375rem;
  background: #ffffff;
}

.prose th {
  background: var(--bt-primary, #4f46e5);
  color: #ffffff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.prose td {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  background: #ffffff;
  vertical-align: middle;
  line-height: 1.5;
}

.prose tbody tr:hover td {
  background: #fafbfc;
}

/* First column subtle styling */
.prose tbody td:first-child {
  color: #334155;
  width: 35%;
}
.prose tbody td:first-child strong {
  font-weight: 600;
  color: inherit;
}

/* Remove bottom border from last row */
.prose tbody tr:last-child td {
  border-bottom: none;
}

/* ── "Official App Link" special row styling (if last row) */
.prose tbody tr:last-child td {
  background-color: var(--bt-primary-50, #eef2ff);
  color: var(--bt-primary, #4f46e5);
}
.prose tbody tr:last-child td:first-child {
  font-weight: 600;
}
.prose tbody tr:last-child td:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bt-primary, #4f46e5);
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px; /* Pill shape */
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}
.prose tbody tr:last-child td:last-child a:hover {
  background-color: var(--bt-primary-dark, #4338ca);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

/* Support for inline codes inside tables */
.prose td code {
  background-color: #e0e7ff; /* matches the screenshot pill */
  color: #3730a3;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
}

/* ── Horizontal Rules ─────────────────────────────── */
.prose hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 2rem 0;
}

/* ── Strikethrough ────────────────────────────────── */
.prose del {
  text-decoration: line-through;
  color: #94a3b8;
}

/* ── Strong/Bold ──────────────────────────────────── */
.prose strong {
  font-weight: 700;
  color: #0f172a;
}

/* ── Emphasis/Italic ──────────────────────────────── */
.prose em {
  font-style: italic;
}

/* ── Dark Mode Post Content ───────────────────────── */
html.dark .prose {
  color: #cbd5e1;
}

html.dark .prose h1,
html.dark .prose h2,
html.dark .prose h3,
html.dark .prose h4,
html.dark .prose h5,
html.dark .prose h6 {
  color: #f1f5f9;
}

html.dark .prose h2 {
  border-bottom-color: #334155;
}

html.dark .prose p {
  color: #cbd5e1;
}

html.dark .prose a {
  color: #818cf8;
}

html.dark .prose a:hover {
  color: #a5b4fc;
}

html.dark .prose ul li,
html.dark .prose ol li {
  color: #cbd5e1;
}

html.dark .prose blockquote {
  background: #1e293b;
  color: #818cf8;
  border-color: #6366f1;
}

html.dark .prose code {
  background: #1e293b;
  color: #f472b6;
  border-color: #334155;
}

html.dark .prose pre {
  background: #020617;
}

html.dark .prose .wp-block-table {
  border-color: #334155;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 2px 4px -2px rgba(0, 0, 0, 0.4);
}

html.dark .prose table {
  background: #0f172a;
}

html.dark .prose th {
  background: var(--bt-primary, #4f46e5);
  border: none;
}

html.dark .prose td {
  border-bottom-color: #1e293b;
  color: #cbd5e1;
  background: #0f172a;
}

html.dark .prose tbody td:first-child {
  color: #f1f5f9;
}

html.dark .prose tbody tr:hover td {
  background: #1a2332;
}

html.dark .prose tbody tr:last-child td {
  background: #1e293b;
  color: #a5b4fc;
}

html.dark .prose tbody tr:last-child td:last-child a {
  background-color: var(--bt-primary, #4f46e5);
  color: #ffffff !important;
  box-shadow: none;
}
html.dark .prose tbody tr:last-child td:last-child a:hover {
  background-color: var(--bt-primary-400, #818cf8);
}

/* Dark mode inline codes inside tables */
html.dark .prose td code {
  background-color: #1e293b;
  color: #818cf8;
}

html.dark .prose hr {
  border-top-color: #334155;
}

html.dark .prose del {
  color: #64748b;
}

html.dark .prose strong {
  color: #f1f5f9;
}

/* ── Footer Popular Links ──────────────────────────── */
.footer-popular-links a {
  color: #94a3b8; /* slate-400 */
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.3);
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.footer-popular-links a:hover {
  color: #818cf8; /* primary-400 */
  text-decoration-color: #818cf8;
}

.footer-popular-links strong {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  color: #cbd5e1; /* slate-300 */
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-popular-links h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-popular-links p {
  line-height: 1.7;
  color: #94a3b8;
}
