:root {
    --primary-blue: #007bff;
    --hover-blue: #0056b3;
    --card-bg: #ffffff;
    --text-dark: #333333;
}

/* Logo Styling */
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
}

/* Filter Buttons (Hover & Active state) */
.filter-btn {
    border: 2px solid #e9ecef !important;
    background-color: transparent !important;
    color: #6c757d !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

/* Faucet aur Shortlinks par hover/click par blue show hoga */
.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Card Improvements */
.hover-effect {
    border-radius: 20px !important;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.hover-effect:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 123, 255, 0.12) !important;
}

/* Badge Styling */
.badge-blue {
    background-color: #ebf5ff !important;
    color: var(--primary-blue) !important;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 6px 12px !important;
}
body.dark-mode .badge-blue,
html.dark-mode .badge-blue {
    background-color: rgba(0, 123, 255, 0.18) !important;
    color: #7bb8ff !important;
}

/* Home site cards — category chips */
.site-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.site-cat-badge i {
    font-size: 0.72rem;
    opacity: 0.95;
}
.site-cat-faucet {
    color: #0ea5e9;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(56, 189, 248, 0.1));
    border-color: rgba(14, 165, 233, 0.35);
}
.site-cat-ptc {
    color: #a855f7;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(192, 132, 252, 0.1));
    border-color: rgba(168, 85, 247, 0.35);
}
.site-cat-shortlinks {
    color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    border-color: rgba(245, 158, 11, 0.4);
}
.site-cat-offerwalls {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    border-color: rgba(16, 185, 129, 0.35);
}
.site-cat-ad_network {
    color: #f43f5e;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(251, 113, 133, 0.1));
    border-color: rgba(244, 63, 94, 0.35);
}
.site-cat-crypto-wallet {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(129, 140, 248, 0.1));
    border-color: rgba(99, 102, 241, 0.35);
}
.site-cat-default {
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(96, 165, 250, 0.1));
    border-color: rgba(59, 130, 246, 0.35);
}
body:not(.dark-mode) .site-cat-badge {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
body.dark-mode .site-cat-badge {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Visit Site Button */
.btn-visit {
    border: 1.5px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    font-weight: 700;
    transition: 0.3s;
}

.btn-visit:hover {
    background-color: var(--primary-blue) !important;
    color: white !important;
}

/* Hero Section styling */
.hero-bg {
    background: linear-gradient(135deg, #e0eaff 0%, #ffffff 100%);
    padding: 60px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

/* Text Size adjustment */
.main-title {
    font-size: 2.5rem !important;
    color: #222;
    letter-spacing: -1px;
}

.sub-title {
    font-size: 1.1rem !important;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Dark theme hero — no white block */
body.dark-mode .hero-bg {
    background: linear-gradient(160deg, #151515 0%, #1c1c1c 55%, #121212 100%) !important;
    border-bottom: 1px solid #2a2a2a;
    box-shadow: none !important;
}
body.dark-mode .hero-bg .main-title {
    color: #f1f5f9 !important;
}
body.dark-mode .hero-bg .sub-title {
    color: #94a3b8 !important;
}
.hero-trust-line {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 720px;
}
body.dark-mode .hero-trust-line {
    color: #94a3b8 !important;
}
body.dark-mode .stats-wrapper .text-dark {
    color: #fff !important;
}
.navbar-brand {
    padding-left: 20px; /* Left side sy gap */
    padding-top: 10px;  /* Top side sy nichay karne ke liye */
    transition: all 0.3s ease;
}
/* Dark Mode Colors */
body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .card {
    background-color: #1e1e1e !important;
    border-color: #333 !important;
    color: #fff !important;
}

body.dark-mode .main-header {
    background: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
}

body.dark-mode .filter-btn {
    background: #2d2d2d;
    color: #ccc;
    border: 1px solid #444;
}

body.dark-mode .filter-btn.active {
    background: #007bff;
    color: white;
}

/* Home category pills — dark theme (no white glare) */
body.dark-mode .fs-home-cat-btn.btn-light,
html.dark-mode .fs-home-cat-btn.btn-light {
    background: #1a1a1a !important;
    border-color: #333 !important;
    color: #cbd5e1 !important;
}
body.dark-mode .fs-home-cat-btn.btn-light:hover,
html.dark-mode .fs-home-cat-btn.btn-light:hover {
    background: #242424 !important;
    border-color: #444 !important;
    color: #fff !important;
}
body.dark-mode .fs-home-cat-btn.btn-primary,
body.dark-mode .fs-home-cat-btn.active,
html.dark-mode .fs-home-cat-btn.btn-primary {
    background: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
}

/* Security Modal Styling */
.security-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.security-card {
    background: #007bff; /* Pure Blue Background */
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.security-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.security-card h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.security-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Button & Hover Effect */
.understand-btn {
    background: #0056b3; /* Darker Blue */
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
}

.understand-btn:hover {
    background: #ffffff;
    color: #007bff;
    transform: translateY(-3px); /* Hover par thoda upar uthay ga */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
}
body.dark-mode h1 span[style*="color: #000000"] {
    color: #ffffff !important; /* Dark mode mein 'Link' white ho jayega */
}
.close-btn:hover { opacity: 1; }


.btn-vote {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Hover Effects */
.btn-like:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-3px);
}

.btn-dislike:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-3px);
}

/* Dark Mode Support */
body.dark-mode .btn-vote {
    background: #2d2d2d;
    border-color: #444;
}
/* Vote Section Container */
.vote-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

/* Base Style for both buttons */
.btn-vote {
    width: 45px;
    height: 45px;
    border-radius: 12px; /* Thoda rounded-square look */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Like Button Customization */
.btn-like {
    color: #007bff !important;
    border: 1px solid rgba(0, 123, 255, 0.2);
}
.btn-like:hover {
    background-color: #007bff;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

/* Dislike Button Customization */
.btn-dislike {
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.2);
}
.btn-dislike:hover {
    background-color: #dc3545;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(220, 53, 69, 0.3);
}

/* Counters Style */
.counter-text {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

/* Dark Mode support */
body.dark-mode .btn-vote {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
body.dark-mode .btn-like {
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.12);
}
body.dark-mode .btn-dislike {
    color: #f87171 !important;
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.12);
}
body.dark-mode .btn-like:hover {
    background-color: #007bff;
    color: #fff !important;
}
body.dark-mode .btn-dislike:hover {
    background-color: #dc3545;
    color: #fff !important;
}
/* Verified Badge Style */
.verified-badge {
    background-color: #d1e7dd;
    color: #0f5132;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
    border: 1px solid #badbcc;
}

/* Site card — top Verified / Sponsored ribbon */
.site-verified-ribbon {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px 2px 6px;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #15803d 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 3px 10px rgba(22, 163, 74, 0.3);
    pointer-events: none;
}
.site-verified-ribbon i {
    font-size: 0.58rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
.site-verified-ribbon.is-sponsored {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 55%, #1d4ed8 100%);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}
.site-card.is-verified-card {
    border: 1px solid rgba(34, 197, 94, 0.28) !important;
}
body.dark-mode .site-card.is-verified-card {
    border-color: rgba(74, 222, 128, 0.35) !important;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08), 0 8px 24px rgba(0, 0, 0, 0.25);
}
body.dark-mode .site-verified-ribbon {
    box-shadow: 0 3px 12px rgba(22, 163, 74, 0.4);
}
body.dark-mode .site-verified-ribbon.is-sponsored {
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.4);
}

/* Tab button ke liye khas style */
.tab-verified.active {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Community Score Container */
.score-wrapper {
    margin-top: 10px;
    margin-bottom: 15px;
}

.score-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.progress-thin {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-score {
    height: 100%;
    transition: width 0.6s ease;
    border-radius: 10px;
}

/* Score ke hisab se colors */
.bg-high-trust { background: linear-gradient(90deg, #28a745, #20c997); } /* Green for 80%+ */
.bg-mid-trust { background: linear-gradient(90deg, #ffc107, #ff9800); }  /* Orange for 50%-79% */
.bg-low-trust { background: linear-gradient(90deg, #dc3545, #f44336); }  /* Red for <50% */

/* Card ke niche walay text ko white/bright karne ke liye */
.trust-score-label, 
.new-site-label, 
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important; /* Halka white rang */
    font-size: 0.85rem;
}

/* Jab mouse card par jaye to text aur saaf nazar aye */
.card:hover .trust-score-label,
.card:hover .new-site-label {
    color: #ffffff !important;
}

/* Likes/Dislikes ke numbers agar dark hain to unhein bhi theek karein */
.like-count, .dislike-count {
    color: #ffffff !important;
    font-weight: bold;
}

.progress {
    background-color: rgba(255, 255, 255, 0.1) !important; /* Bar ka khali hissa */
    height: 6px;
    border-radius: 10px;
}
/* --- White Mode Text Fix --- */
/* Jab dark mode off ho to text ko blackish grey kar do */
body:not(.dark-mode) .text-muted.small, 
body:not(.dark-mode) .small.text-muted {
    color: #222222 !important;
}

/* White mode mein tick icon (green check) ko wazeh karna */
body:not(.dark-mode) .fa-check-circle {
    color: #28a745 !important;
}

/* --- Back to Top Button Position & Look --- */
#backToTop {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #007bff !important; /* Blue color */
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    cursor: pointer !important;
    display: none; /* JS isay scroll par show karegi */
    align-items: center;
    justify-content: center;
}

/* Hover effect */
#backToTop:hover {
    background-color: #0056b3 !important;
    transform: scale(1.1);
}
.dark-mode .card { background-color: #242424 !important; }
.dark-mode .card h3 { color: #ffffff !important; }
.dark-mode .card p { color: #cbd5e0 !important; }

/* Home — Automated Verified Platforms feature card */
.fs-verify-feature {
    background: #ffffff;
    border: 1px solid #e3f2fd !important;
}
body.dark-mode .fs-verify-feature,
.dark-mode .fs-verify-feature {
    background: #1e1e1e !important;
    border-color: #333 !important;
}
body.dark-mode .fs-verify-title,
.dark-mode .fs-verify-title {
    color: #f1f1f1 !important;
}
body.dark-mode .fs-verify-desc,
.dark-mode .fs-verify-desc {
    color: #94a3b8 !important;
}
.fs-verify-title {
    color: #1a202c;
}
.fs-verify-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}
.fs-verify-desc strong {
    color: #2d3748;
}
.fs-verify-accent {
    color: #e53e3e;
    font-weight: 700;
}
.fs-verify-contact {
    color: #6c757d;
}
.fs-verify-community {
    color: #3182ce;
}
.fs-verify-payment {
    color: #38a169;
}
.fs-verify-footer {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

body.dark-mode .fs-verify-feature {
    background: #1e1e1e !important;
    border-color: #333 !important;
    box-shadow: none !important;
}
body.dark-mode .fs-verify-title {
    color: #f1f5f9 !important;
}
body.dark-mode .fs-verify-desc {
    color: #cbd5e1 !important;
}
body.dark-mode .fs-verify-desc strong {
    color: #f8fafc !important;
}
body.dark-mode .fs-verify-accent {
    color: #f87171 !important;
}
body.dark-mode .fs-verify-contact,
body.dark-mode .fs-verify-contact strong {
    color: #94a3b8 !important;
}
body.dark-mode .fs-verify-community {
    color: #60a5fa !important;
}
body.dark-mode .fs-verify-payment {
    color: #4ade80 !important;
}
body.dark-mode .fs-verify-footer {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Trust Score ka wrapper aur text visibility */
.score-text span.text-muted {
    color: #495057 !important; /* Light mode mein parha jane wala dark gray */
}

/* Jab site "New Site" ho to uska color thora alag dikhe */
.score-text span:last-child {
    color: #212529; /* Percentage ya text ka default color */
}

/* --- Dark Mode Support --- */
.dark-mode .score-text span.text-muted {
    color: #adb5bd !important; /* Dark mode mein thora bright silver color */
}

.dark-mode .score-text span:last-child {
    color: #ffffff !important; /* Dark mode mein white text */
}

/* Progress bar agar niche hai to uska background bhi set kar dein */
.progress {
    background-color: #e9ecef; /* Light mode */
}

.dark-mode .progress {
    background-color: #343a40 !important; /* Dark mode background */
}
/* Dropdown dots ka color light/dark mode ke mutabiq */
.dropdown .btn-link {
    color: #6c757d !important;
    transition: 0.3s;
}

.dropdown .btn-link:hover {
    color: #007bff !important;
}

/* Dark mode support for dropdown */
.dark-mode .dropdown-menu {
    background-color: #2d2d2d !important;
    color: white !important;
    border: 1px solid #444 !important;
}

.dark-mode .dropdown-item {
    color: #e0e0e0 !important;
}

.dark-mode .dropdown-item:hover {
    background-color: #3d3d3d !important;
}
/* Card ko allow karein dropdown bahar dikhane ke liye */
/* Dropdown ko sab ke upar dikhao */
/* Card ko allow karein ke wo dropdown ko bahar dikhaye */
/* 1. Card Layout Fix: Dropdown ko bahar nikalne ki ijazat dena */
.item-card .card {
    overflow: visible !important; 
    position: relative; 
    z-index: 1;
}

/* User-submitted listing owner — small English label */
.site-owner-chip {
    position: absolute;
    top: 10px;
    left: 12px;
    right: 40px;
    z-index: 5;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 4px;
    max-width: calc(100% - 52px);
    line-height: 1.2;
    pointer-events: auto;
}
.site-card.is-verified-card .site-owner-chip {
    top: 30px;
}
.site-owner-label {
    flex-shrink: 0;
    font-size: 0.6rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.01em;
}
.site-owner-name {
    font-size: 0.68rem;
    font-weight: 700;
    color: #007bff !important;
    text-decoration: none !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 0 !important;
    background-image: none !important;
}
a.site-owner-name,
a.site-owner-name:link,
a.site-owner-name:visited,
a.site-owner-name:hover,
a.site-owner-name:focus,
a.site-owner-name:active {
    color: #007bff !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
body.dark-mode .site-owner-label {
    color: #64748b;
}
body.dark-mode a.site-owner-name,
body.dark-mode a.site-owner-name:link,
body.dark-mode a.site-owner-name:visited,
body.dark-mode a.site-owner-name:hover {
    color: #4da3ff !important;
}

/* Hover under sticky header — no header overlap glitch */
.item-card:hover .card {
    z-index: 20 !important;
}
.item-card .card.hover-effect:hover {
    transform: translateY(-6px) !important;
}

/* 3. Remove Dropdown Arrow: 3 dots ke saath wala faltu symbol hatane ke liye */
.dropdown-toggle::after {
    display: none !important;
}

/* 4. Dropdown Menu Styling: Ise sab se upar dikhana */
.dropdown-menu {
    z-index: 9999 !important;
    margin-top: 5px !important;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 5. 3 Dots Button Styling */
.btn-link {
    color: #6c757d;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: none !important; /* Blue outline khatam karne ke liye */
}

.btn-link:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

/* 6. Mobile Compatibility: Ensure dropdown screen se bahar na jaye */
.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}



/* Pagination Styling */
.pagination .page-link {
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 8px !important; /* Rounded corners like screenshot */
    padding: 8px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
}


@media (max-width: 991px) {
    .navbar-brand {
        padding-left: 10px;
        padding-top: 5px;
    }
}

/* Site logo — readable on light + dark (no black plate) */
.site-brand-logo {
    background: transparent !important;
    box-shadow: none !important;
}
/* Dark theme: black plate disappears, light icon stays */
html.dark-mode .site-brand-logo,
body.dark-mode .site-brand-logo {
    mix-blend-mode: lighten;
    filter: none;
}
/* Light theme: black plate → white (invisible), white icon → dark */
html:not(.dark-mode) body:not(.dark-mode) .site-brand-logo,
body:not(.dark-mode) .site-brand-logo {
    mix-blend-mode: normal;
    filter: invert(1) hue-rotate(180deg);
}

