/* ===================================================================
   Indian Loop Premium — dark.css
   Dark mode is opt-in via [data-theme="dark"] on <html>. Toggles
   only colors — layout stays identical for performance.
   =================================================================== */

html[data-theme="dark"] {
    --ilp-bg:      #0e0f12;
    --ilp-fg:      #f5f5f7;
    --ilp-muted:   #1a1c20;
    --ilp-line:    #25272d;
    --ilp-subtle:  #a1a1aa;
    --ilp-accent:  #07080a;
    color-scheme: dark;
}

html[data-theme="dark"] body { background: var(--ilp-bg); color: var(--ilp-fg); }

html[data-theme="dark"] .ilp-header { background: var(--ilp-bg); border-bottom-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-topbar { background: #050608; }
html[data-theme="dark"] .ilp-ticker { background: #14161a; border-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-search-overlay__inner { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-search-form__input { background: var(--ilp-muted); border-color: var(--ilp-line); color: var(--ilp-fg); }
html[data-theme="dark"] .ilp-card { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-card--small { background: transparent; border-bottom-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-author-bio { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-author-card { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-widget { background: var(--ilp-muted); border-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-poll__card { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-poll__opt { background: #14161a; border-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-weather-strip { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-weather-strip__city { background: #14161a; }
html[data-theme="dark"] .ilp-footer { background: #050608; }
html[data-theme="dark"] .ilp-mobile-bar { background: var(--ilp-bg); border-top-color: var(--ilp-line); }
html[data-theme="dark"] .ilp-mobile-drawer { background: var(--ilp-bg); }
html[data-theme="dark"] .ilp-article__body code { background: var(--ilp-muted); color: var(--ilp-fg); }
html[data-theme="dark"] .ilp-article__body blockquote { background: var(--ilp-muted); }
html[data-theme="dark"] .ilp-category-hero { background: linear-gradient(135deg, var(--cat-color, var(--ilp-primary)) -30%, transparent 70%), var(--ilp-muted); }
html[data-theme="dark"] .ilp-ad-placeholder { background: linear-gradient(45deg, #1a1c20 25%, #14161a 25%, #14161a 50%, #1a1c20 50%, #1a1c20 75%, #14161a 75%); color: #6b6b76; }

html[data-theme="dark"] .ilp-newsletter__form input { background: var(--ilp-muted); color: var(--ilp-fg); border: 1px solid var(--ilp-line); }

/* Smooth transition when toggling */
html.ilp-theme-switching * { transition: background-color .3s ease, color .3s ease, border-color .3s ease !important; }
