/* @tailwind base;
@tailwind components;
@tailwind utilities; */

/* body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: auto;
  }
  
  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  } */

  @import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");
  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap'); 
  
  


  body {
    font-family: "Epilogue", sans-serif !important;
  }
  
  h1{
    font-family: "Epilogue", sans-serif !important;
  }
  body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: "Epilogue", sans-serif ;
  }

  .active-light-mode,
  .active-dark-mode,
  html[data-theme="light"],
  body[data-theme="light"] {
    --color-primary: #3f85c6;
    --color-primary-alt: #35316f;
    --color-secondary: #CD99FF;
    --color-primary-gradient-start: #3f85c6;
    --color-primary-gradient-end: #CD99FF;
    --color-heading: #0f172a;
    --color-body: #475467;
    --color-link: #475467;
    --color-text-off: #667085;
    --color-dark: #f3f4f6;
    --color-darker: rgba(15, 23, 42, 0.06);
    --color-darkest: rgba(15, 23, 42, 0.06);
    --color-lessdark: #f1f5f9;
    --color-black: #000000;
    --color-blackest: #ffffff;
    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-light: rgba(15, 23, 42, 0.08);
    --color-border-dark: rgba(15, 23, 42, 0.12);
    --dark-bg-1: #f6f7ff;
    --dark-bg-2: #ffffff;
    --dark-bg-3: #eef2ff;
    --dark-bg-4: #f8fafc;
    --dark-color-link: #111827;
    --color-bg-1: #f6f7ff;
    --color-gray: #475467;
    --color-midgray: #667085;
    --color-light: #e2e8f0;
    --color-lighter: #e5e7eb;
    --color-lightest: #f8fafc;
    --color-white: #ffffff;
    --color-white-off: rgba(15, 23, 42, 0.06);
  }

  html[data-theme="dark"],
  body[data-theme="dark"] {
    --color-primary: #3f85c6;
    --color-primary-alt: #35316f;
    --color-secondary: #CD99FF;
    --color-primary-gradient-start: #3f85c6;
    --color-primary-gradient-end: #CD99FF;
    --color-heading: #ffffff;
    --color-body: #BCC3D7;
    --color-link: #BCC3D7;
    --color-text-off: #565e78;
    --color-dark: #21242D;
    --color-darker: rgba(6, 6, 6, 0.7);
    --color-darkest: rgba(0, 0, 0, 0.3);
    --color-lessdark: #2E313D;
    --color-black: #000000;
    --color-blackest: #16181E;
    --color-border: rgba(255, 255, 255, 0.05);
    --color-border-light: #e5e7eb;
    --color-border-dark: #1E1E1E;
    --dark-bg-1: #F8F8FF;
    --dark-bg-2: #212330;
    --dark-bg-3: #DDE7FF;
    --dark-bg-4: #EBEFFF;
    --dark-color-link: #000000;
    --color-bg-1: #0E0C15;
    --color-gray: #3E414B;
    --color-midgray: #878787;
    --color-light: #E4E6EA;
    --color-lighter: #CED0D4;
    --color-lightest: #F0F2F5;
    --color-white: #ffffff;
    --color-white-off: rgba(255, 255, 255, 0.05);
  }

  .active-light-mode body,
  html[data-theme="light"] body,
  body[data-theme="light"] {
    background: #f8fafc;
    color: #0f172a;
  }

  /* Fix vendor theme inversion: ensure dark mode stays dark */
  html[data-theme="dark"],
  html[data-theme="dark"],
  body[data-theme="dark"] {
    background: transparent;
    color: inherit;
  }
  html[data-theme="dark"] body,
  html[data-theme="dark"] body,
  body[data-theme="dark"] {
    background: var(--color-bg-1);
    color: var(--color-body);
  }

  html[data-theme="dark"] h1,
  html[data-theme="dark"] h2,
  html[data-theme="dark"] h3,
  html[data-theme="dark"] h4,
  html[data-theme="dark"] h5,
  html[data-theme="dark"] h6,
  html[data-theme="dark"] h1,
  html[data-theme="dark"] h2,
  html[data-theme="dark"] h3,
  html[data-theme="dark"] h4,
  html[data-theme="dark"] h5,
  html[data-theme="dark"] h6 {
    color: var(--color-heading);
  }

  .active-light-mode h1,
  .active-light-mode h2,
  .active-light-mode h3,
  .active-light-mode h4,
  .active-light-mode h5,
  .active-light-mode h6,
  html[data-theme="light"] h1,
  html[data-theme="light"] h2,
  html[data-theme="light"] h3,
  html[data-theme="light"] h4,
  html[data-theme="light"] h5,
  html[data-theme="light"] h6 {
    color: var(--color-heading);
  }
  
  
  .cursor-pointer {
    cursor: pointer;
  }
  
  nextjs-portal {
    display: none;
  }

  /* Blog UI fixes loaded after style.css */
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card {
    background: #ffffff !important;
    border-color: rgba(17, 24, 39, 0.08) !important;
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card .card-header .accordion-button,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card .card-header .accordion-button {
    color: #101828 !important;
    -webkit-text-fill-color: initial !important;
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card .card-body,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card .card-body {
    background: #ffffff !important;
    color: #475467 !important;
  }
  html[data-theme="dark"] .blog-faq-block .rainbow-accordion-style .card,
  html[data-theme="dark"] .rainbow-blog-details-area .rainbow-accordion-style .card {
    background: #151b26 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  html[data-theme="dark"] .blog-faq-block .rainbow-accordion-style .card .card-header .accordion-button,
  html[data-theme="dark"] .rainbow-blog-details-area .rainbow-accordion-style .card .card-header .accordion-button {
    color: #e6ebf3 !important;
  }
  html[data-theme="dark"] .blog-faq-block .rainbow-accordion-style .card .card-body,
  html[data-theme="dark"] .rainbow-blog-details-area .rainbow-accordion-style .card .card-body {
    background: #151b26 !important;
    color: #b7c0cf !important;
  }

  .active-light-mode .profile-card {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  }
  html[data-theme="dark"] .profile-card {
    background: #151b26 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none;
  }

  /* Blog cards: keep images fully visible */
  .active-light-mode .blog-card-modern .thumbnail a {
    display: grid;
    place-items: center;
    background: #f6f7ff;
    aspect-ratio: 16 / 9;
  }
  .active-light-mode .blog-card-modern .thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #f6f7ff;
  }
  html[data-theme="dark"] .blog-card-modern .thumbnail a {
    display: grid;
    place-items: center;
    background: #101521;
    aspect-ratio: 16 / 9;
  }
  html[data-theme="dark"] .blog-card-modern .thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #101521;
  }

  .active-light-mode .blog-card-modern {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .blog-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  }
  html[data-theme="dark"] .blog-card-modern {
    background: #131824;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  html[data-theme="dark"] .blog-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  }

  .blog-hero-excerpt {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 1.6;
  }
  .active-light-mode .blog-hero-excerpt {
    color: #4b5563;
  }
  html[data-theme="dark"] .blog-hero-excerpt {
    color: #c3cad7;
  }

  .blog-hero-meta {
    justify-content: center;
    gap: 12px;
  }
  .active-light-mode .blog-hero .breadcrumb-inner .title,
  .active-light-mode .blog-hero .breadcrumb-inner .description,
  .active-light-mode .blog-hero .breadcrumb-inner .page-list li,
  .active-light-mode .blog-hero .breadcrumb-inner .page-list li a {
    color: #111827 !important;
  }
  .active-light-mode .blog-hero .breadcrumb-inner .page-list li::after {
    background-color: #cbd5f5 !important;
  }
  html[data-theme="dark"] .blog-hero .breadcrumb-inner .title,
  html[data-theme="dark"] .blog-hero .breadcrumb-inner .description,
  html[data-theme="dark"] .blog-hero .breadcrumb-inner .page-list li,
  html[data-theme="dark"] .blog-hero .breadcrumb-inner .page-list li a {
    color: #e5e7eb !important;
  }
  html[data-theme="dark"] .blog-hero .breadcrumb-inner .page-list li::after {
    background-color: rgba(226, 232, 240, 0.4) !important;
  }
  .active-light-mode .blog-hero-meta li {
    color: #4b5563;
  }
  html[data-theme="dark"] .blog-hero-meta li {
    color: #c3cad7;
  }

  .blog-hero-image img {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }
  html[data-theme="dark"] .blog-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .rainbow-sidebar {
    position: sticky;
    top: 110px;
  }

  /* Sidebar widgets (TOC / Related) */
  .active-light-mode .rainbow-sidebar .rbt-single-widget {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .rainbow-sidebar .rbt-single-widget .title {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
  }
  html[data-theme="dark"] .rainbow-sidebar .rbt-single-widget {
    background: #131824;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    box-shadow: none;
  }
  html[data-theme="dark"] .rainbow-sidebar .rbt-single-widget .title {
    color: #e5e7eb;
    font-size: 16px;
    font-weight: 700;
  }

  .active-light-mode .blog-hero.breadcarumb-style-1 {
    background: radial-gradient(120% 120% at 0% 0%, #eef2ff 0%, #f6f7ff 45%, #f8fbff 100%) !important;
    background-color: #f6f7ff !important;
    background-image: none !important;
  }
  html[data-theme="dark"] .blog-hero.breadcarumb-style-1 {
    background: radial-gradient(120% 120% at 0% 0%, #101827 0%, #0f172a 45%, #0b1220 100%) !important;
    background-color: #0f172a !important;
  }

  /* Blog index cards - force correct light/dark */
  .active-light-mode .rainbow-blog-area .rainbow-card {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .rainbow-blog-area .rainbow-card .content .title a,
  .active-light-mode .rainbow-blog-area .rainbow-card .content .rainbow-meta-list li,
  .active-light-mode .rainbow-blog-area .rainbow-card .content .rainbow-meta-list li a {
    color: #111827 !important;
  }
  .active-light-mode .rainbow-blog-area .rainbow-card .content .btn-read-more {
    color: #1d4ed8 !important;
  }

  .blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  .blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.14);
    color: #1e3a8a;
  }
  .blog-chip.muted {
    background: rgba(15, 23, 42, 0.08);
    color: #475467;
  }
  html[data-theme="dark"] .blog-chip {
    background: rgba(99, 102, 241, 0.18);
    color: #c7d2fe;
  }
  html[data-theme="dark"] .blog-chip.muted {
    background: rgba(255, 255, 255, 0.08);
    color: #b7c0cf;
  }
  .blog-card-excerpt {
    margin-top: 8px;
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
  }
  html[data-theme="dark"] .blog-card-excerpt {
    color: #b7c0cf;
  }

  /* Theme switcher: header + nav light mode */
  .active-light-mode .header-default {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .header-transparent-with-topbar .header-default,
  .active-light-mode .header-default.header-transparent {
    background-color: transparent !important;
  }
  .active-light-mode .rainbow-header.sticky {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .mainmenu-nav .mainmenu {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .mainmenu-nav .mainmenu > li > a {
    color: #0f172a;
  }
  .active-light-mode .mainmenu-nav .mainmenu > li > a::after {
    opacity: 0.15;
  }
  .active-light-mode .mainmenu-nav .mainmenu li.has-dropdown .submenu,
  .active-light-mode .mainmenu-nav .mainmenu li.has-dropdown .submenu-new {
    background-color: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .mainmenu-nav .mainmenu li.has-dropdown .submenu li a {
    color: #0f172a;
  }
  .active-light-mode .mainmenu-nav .mainmenu li.has-dropdown .submenu li a:hover {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a !important;
  }

  /* Theme switcher: header + nav dark mode */
  html[data-theme="dark"] .header-default {
    background-color: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .header-transparent-with-topbar .header-default,
  html[data-theme="dark"] .header-default.header-transparent {
    background-color: transparent !important;
  }
  html[data-theme="dark"] .rainbow-header.sticky {
    background-color: rgba(15, 23, 42, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu > li > a {
    color: #e2e8f0;
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu > li > a::after {
    opacity: 0.2;
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu li.has-dropdown .submenu,
  html[data-theme="dark"] .mainmenu-nav .mainmenu li.has-dropdown .submenu-new {
    background-color: #0f172a;
    border-color: rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu li.has-dropdown .submenu li a {
    color: #e2e8f0;
  }
  html[data-theme="dark"] .mainmenu-nav .mainmenu li.has-dropdown .submenu li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
  }

  .active-light-mode .logo-light {
    display: block;
  }
  .active-light-mode .logo-dark {
    display: none;
  }
  html[data-theme="dark"] .logo-light {
    display: none;
  }
  html[data-theme="dark"] .logo-dark {
    display: block;
  }

  /* Footer light mode */
  .active-light-mode .footer-style-default,
  .active-light-mode .footer-style-1 {
    background: #ffffff !important;
    background-image: none !important;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .title,
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .subtitle,
  .active-light-mode .footer-style-1 .footer-top .rainbow-footer-widget .title,
  .active-light-mode .footer-style-1 .footer-top .rainbow-footer-widget .subtitle {
    color: #0f172a;
  }
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .text-big,
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .desc-text,
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .footer-link li a,
  .active-light-mode .footer-style-1 .footer-top .rainbow-footer-widget .footer-link li a {
    color: #475467;
  }
  .active-light-mode .footer-style-default .footer-top .rainbow-footer-widget .footer-link li a:hover,
  .active-light-mode .footer-style-1 .footer-top .rainbow-footer-widget .footer-link li a:hover {
    color: #1d4ed8;
  }
  .active-light-mode .footer-bottom,
  .active-light-mode .footer-copyright {
    background: #ffffff;
    color: #475467;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .footer-bottom a,
  .active-light-mode .footer-copyright a {
    color: #475467;
  }
  .active-light-mode .footer-bottom a:hover,
  .active-light-mode .footer-copyright a:hover {
    color: #1d4ed8;
  }

  /* Footer dark mode */
  html[data-theme="dark"] .footer-style-default,
  html[data-theme="dark"] .footer-style-1 {
    background: #0b1020 !important;
    background-image: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .title,
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .subtitle,
  html[data-theme="dark"] .footer-style-1 .footer-top .rainbow-footer-widget .title,
  html[data-theme="dark"] .footer-style-1 .footer-top .rainbow-footer-widget .subtitle {
    color: #e2e8f0;
  }
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .text-big,
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .desc-text,
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .footer-link li a,
  html[data-theme="dark"] .footer-style-1 .footer-top .rainbow-footer-widget .footer-link li a {
    color: #b7c0cf;
  }
  html[data-theme="dark"] .footer-style-default .footer-top .rainbow-footer-widget .footer-link li a:hover,
  html[data-theme="dark"] .footer-style-1 .footer-top .rainbow-footer-widget .footer-link li a:hover {
    color: #7aa7ff;
  }
  html[data-theme="dark"] .footer-bottom,
  html[data-theme="dark"] .footer-copyright {
    background: #0b1020;
    color: #b7c0cf;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .footer-bottom a,
  html[data-theme="dark"] .footer-copyright a {
    color: #b7c0cf;
  }
  html[data-theme="dark"] .footer-bottom a:hover,
  html[data-theme="dark"] .footer-copyright a:hover {
    color: #7aa7ff;
  }

  /* Blog area background per mode */
  .active-light-mode .rainbow-blog-area {
    background: #f5f7ff;
  }
  html[data-theme="dark"] .rainbow-blog-area {
    background: transparent;
  }

  /* Blog single refinements */
  .blog-content-card .content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }
  html[data-theme="dark"] .blog-content-card .content {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  .blog-sidebar .rbt-single-widget {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  }
  .blog-sidebar .rbt-single-widget + .rbt-single-widget {
    margin-top: 24px;
  }
  html[data-theme="dark"] .blog-sidebar .rbt-single-widget {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  /* Map hero refinements */
  .location-map-hero .location-map-stats {
    display: flex;
    gap: 16px;
    margin: 18px 0 8px;
  }
  .location-map-stat {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    min-width: 120px;
  }
  .location-map-stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
  }
  .location-map-stat-value {
    font-size: 18px;
    color: #111827;
    font-weight: 700;
  }
  html[data-theme="dark"] .location-map-stat {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
  }
  html[data-theme="dark"] .location-map-stat-label {
    color: #94a3b8;
  }
  html[data-theme="dark"] .location-map-stat-value {
    color: #f8fafc;
  }

  html[data-theme="dark"] .rainbow-blog-area .rainbow-card {
    background: #121826 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none;
  }
  html[data-theme="dark"] .rainbow-blog-area .rainbow-card .content .title a,
  html[data-theme="dark"] .rainbow-blog-area .rainbow-card .content .rainbow-meta-list li,
  html[data-theme="dark"] .rainbow-blog-area .rainbow-card .content .rainbow-meta-list li a {
    color: #e5e7eb !important;
  }

  .blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  .active-light-mode .blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 600;
  }
  .active-light-mode .blog-chip.muted {
    background: rgba(100, 116, 139, 0.16);
    color: #334155;
  }
  html[data-theme="dark"] .blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 600;
  }
  html[data-theme="dark"] .blog-chip.muted {
    background: rgba(148, 163, 184, 0.2);
    color: #cbd5f5;
  }

  .active-light-mode .blog-card-excerpt {
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  html[data-theme="dark"] .blog-card-excerpt {
    color: #cbd5f5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  /* Blog FAQ + Author block - force light mode to stay light */
  .active-light-mode .blog-faq-block {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card .card-header .accordion-button,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card .card-header .accordion-button {
    color: #111827 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card .card-header .accordion-button::before,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card .card-header .accordion-button::before {
    color: #111827 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
  }
  .active-light-mode .blog-faq-block .rainbow-accordion-style .card .card-body,
  .active-light-mode .rainbow-blog-details-area .rainbow-accordion-style .card .card-body {
    background: #ffffff !important;
    color: #475467 !important;
  }

  .active-light-mode .profile-card {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
  }
  .active-light-mode .profile-card .profile-content h2 {
    color: #111827 !important;
  }
  .active-light-mode .profile-card .profile-content p {
    color: #475467 !important;
  }

  .looking-glass-card {
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  }
  .looking-glass-card .inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .looking-glass-card .looking-glass-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .looking-glass-title {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .looking-glass-title .title {
    margin: 0;
    font-size: 18px;
  }
  .looking-glass-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .looking-glass-card .lg-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 18px;
  }
  .looking-glass-card .looking-glass-btn {
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
  }
  .looking-glass-card .looking-glass-url {
    font-size: 13px;
    color: #64748b;
    word-break: break-all;
    margin: 0;
  }
  html[data-theme="dark"] .looking-glass-card {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  }
  html[data-theme="dark"] .looking-glass-card .looking-glass-url,
  html[data-theme="dark"] .looking-glass-subtitle {
    color: #94a3b8;
  }
  html[data-theme="dark"] .looking-glass-card .lg-icon {
    background: rgba(129, 140, 248, 0.18);
    color: #c7d2fe;
  }

  .affiliate-page .section-purple {
    background: #f6f2ff;
  }
  .affiliate-page .section-purple .section-title .title,
  .affiliate-page .section-purple .section-title p,
  .affiliate-page .section-purple .tier-card,
  .affiliate-page .section-purple .tier-card p,
  .affiliate-page .section-purple .tier-card .tier-name,
  .affiliate-page .section-purple .tier-card .tier-commission,
  .affiliate-page .section-purple .tier-card .tier-requirement {
    color: #0f172a !important;
  }
  .affiliate-page .benefit-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  .affiliate-page .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.12);
    color: #4f46e5;
    font-size: 20px;
  }
  html[data-theme="dark"] .affiliate-page .section-purple {
    background: #0f172a;
  }
  html[data-theme="dark"] .affiliate-page .section-purple .section-title .title,
  html[data-theme="dark"] .affiliate-page .section-purple .section-title p,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card p,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-name,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-commission,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-requirement {
    color: #e2e8f0;
  }
  html[data-theme="dark"] .affiliate-page .benefit-card {
    background: #0b1220;
    border-color: rgba(148, 163, 184, 0.2);
  }
  html[data-theme="dark"] .affiliate-page .benefit-icon {
    background: rgba(129, 140, 248, 0.18);
    color: #c7d2fe;
  }
  html[data-theme="dark"] .affiliate-page .section-purple .section-title .title,
  html[data-theme="dark"] .affiliate-page .section-purple .section-title p,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card p,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-name,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-commission,
  html[data-theme="dark"] .affiliate-page .section-purple .tier-card .tier-requirement {
    color: #e2e8f0 !important;
  }

  .header-currency {
    margin-right: 12px;
  }
  .header-currency .currency-select {
    height: 38px;
    border-radius: 999px;
    padding: 6px 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
  }
  html[data-theme="dark"] .header-currency .currency-select {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
  }
