html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        * {
            box-sizing: border-box;
        }

        /* Hero background with blurred image */
        .hero-section {
            position: relative;
            overflow: visible;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 90px;
            padding-bottom: 64px;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            z-index: 1;
        }

        /* Fixed Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 90px;
            background: white;
            border-bottom: 1px solid #e4e4e7;
            z-index: 50;
            display: flex;
            align-items: center;
            padding: 0 40px;
            gap: 32px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .header-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: white;
            font-family: 'Space Grotesk', sans-serif;
        }

        .header-logo-text {
            font-size: 18px;
            font-weight: 600;
            color: #18181b;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
        }

        .header-nav {
            display: none;
            align-items: center;
            gap: 32px;
            flex: 1;
        }

        @media (min-width: 768px) {
            .header-nav {
                display: flex;
            }
        }

        .header-nav-link {
            font-size: 14px;
            font-weight: 500;
            color: #18181b;
            cursor: pointer;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .header-nav-link:hover {
            color: #7c3aed;
        }

        .header-search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 auto;
        }

        .header-search {
            width: 100%;
            padding: 12px 20px 12px 44px;
            border: 1px solid #e4e4e7;
            border-radius: 24px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            background: white;
            transition: all 0.3s ease;
            position: relative;
        }

        .header-search:focus {
            outline: none;
            border-color: #7c3aed;
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
        }

        .header-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #a1a1aa;
            pointer-events: none;
            width: 18px;
            height: 18px;
        }

        .header-cta {
            display: none;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: white;
            color: #18181b;
            border: 1px solid #e4e4e7;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (min-width: 1024px) {
            .header-cta {
                display: flex;
            }
        }

        .header-cta:hover {
            background: #facc15;
            border-color: #facc15;
            color: #18181b;
        }

        /* Hero Content */
                /* Theme Toggle Button */
                .theme-toggle {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    padding: 10px 16px;
                    background: #f4f4f5;
                    border: 1px solid #e4e4e7;
                    border-radius: 24px;
                    cursor: pointer;
                    font-size: 13px;
                    font-weight: 500;
                    color: #52525b;
                    transition: all 0.3s ease;
                    flex-shrink: 0;
                    font-family: 'Inter', sans-serif;
                }

                .theme-toggle:hover {
                    background: #e4e4e7;
                    color: #18181b;
                }

                .theme-toggle i {
                    font-size: 14px;
                }

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

                html.dark-mode body {
                    background: #0f0f0f;
                    color: #ffffff;
                }

                html.dark-mode .header {
                    background: #1a1a1a;
                    border-bottom-color: #2a2a2a;
                }

                html.dark-mode .header-nav-link {
                    color: #e4e4e7;
                }

                html.dark-mode .header-nav-link:hover {
                    color: #a78bfa;
                }

                html.dark-mode .header-search {
                    background: #2a2a2a;
                    border-color: #3a3a3a;
                    color: #e4e4e7;
                }

                html.dark-mode .header-search::placeholder {
                    color: #6b6b6b;
                }

                html.dark-mode .header-search:focus {
                    border-color: #a78bfa;
                    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
                }

                html.dark-mode .header-search-icon {
                    color: #6b6b6b;
                }

                html.dark-mode .theme-toggle {
                    background: #2a2a2a;
                    border-color: #3a3a3a;
                    color: #b4b4b4;
                }

                html.dark-mode .theme-toggle:hover {
                    background: #3a3a3a;
                    color: #ffffff;
                }

                html.dark-mode .hero-overlay {
                    background: rgba(10, 10, 14, 0.88);
                }

                html.dark-mode .hero-headline {
                    color: #ffffff;
                }

                html.dark-mode .hero-subheadline {
                    color: #b4b4b4;
                }

                html.dark-mode .logo-card {
                    background: #171723;
                    border-color: #2f2f45;
                }

                html.dark-mode .logo-card:hover {
                    border-color: #a78bfa;
                    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
                }

                html.dark-mode .logo-image-container {
                    background: #2a2a2a;
                }

                html.dark-mode .logo-name {
                    color: #ffffff;
                }

                html.dark-mode .logo-badge {
                    color: #34d399;
                }

                html.dark-mode .filter-btn {
                    background: #26233a;
                    color: #c4b5fd;
                    border-color: #4c1d95;
                }

                html.dark-mode .filter-btn:hover {
                    background: #312e81;
                    color: #ddd6fe;
                }

                html.dark-mode .filter-btn.active {
                    background: linear-gradient(135deg, #6d28d9 0%, #4338ca 100%);
                    color: #ffffff;
                    border-color: #a78bfa;
                    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.36);
                }

                html.dark-mode .hero-badge {
                    background: #3a2a5a;
                    color: #a78bfa;
                }

                html.dark-mode .toast {
                    background: #1a1a1a;
                    color: #ffffff;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
                }

                /* Footer Styles */
                .footer {
                    background: #f9fafb;
                    border-top: 1px solid #e4e4e7;
                    padding: 60px 40px 40px;
                    margin-top: 80px;
                    position: relative;
                    z-index: 5;
                }

                html.dark-mode .footer {
                    background: #121216;
                    border-top-color: #2a2a2a;
                }

                html.dark-mode .header-logo-text {
                    color: #f4f4f5;
                }

                html.dark-mode .footer-copyright {
                    color: #9ca3af;
                }

                .footer-content {
                    max-width: 1400px;
                    margin: 0 auto;
                }

                .footer-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 40px;
                    margin-bottom: 40px;
                }

                .footer-column h3 {
                    font-size: 14px;
                    font-weight: 700;
                    color: #18181b;
                    text-transform: uppercase;
                    letter-spacing: 0.1em;
                    margin-bottom: 24px;
                    font-family: 'Space Grotesk', sans-serif;
                }

                html.dark-mode .footer-column h3 {
                    color: #ffffff;
                }

                .footer-column a {
                    display: block;
                    font-size: 14px;
                    color: #52525b;
                    text-decoration: none;
                    margin-bottom: 12px;
                    transition: color 0.3s ease;
                    font-family: 'Inter', sans-serif;
                }

                .footer-column a:hover {
                    color: #7c3aed;
                }

                html.dark-mode .footer-column a {
                    color: #b4b4b4;
                }

                html.dark-mode .footer-column a:hover {
                    color: #a78bfa;
                }

                .footer-divider {
                    height: 1px;
                    background: #e4e4e7;
                    margin: 40px 0;
                }

                html.dark-mode .footer-divider {
                    background: #2a2a2a;
                }

                .footer-bottom {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 20px;
                }

                .footer-copyright {
                    font-size: 13px;
                    color: #a1a1aa;
                    font-family: 'Inter', sans-serif;
                }

                html.dark-mode .footer-copyright {
                    color: #666666;
                }

                .footer-social {
                    display: flex;
                    gap: 16px;
                    align-items: center;
                }

                .footer-social a {
                    width: 40px;
                    height: 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #e4e4e7;
                    border-radius: 50%;
                    color: #18181b;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    font-size: 16px;
                    margin: 0;
                }

                .footer-social a:hover {
                    background: #7c3aed;
                    color: white;
                    transform: translateY(-2px);
                }

                html.dark-mode .footer-social a {
                    background: #2a2a2a;
                    color: #ffffff;
                }

                html.dark-mode .footer-social a:hover {
                    background: #a78bfa;
                    color: #000000;
                }

                @media (max-width: 640px) {
                    .footer {
                        padding: 40px 20px 30px;
                        margin-top: 40px;
                    }

                    .footer-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 24px;
                    }

                    .footer-column h3 {
                        font-size: 12px;
                        margin-bottom: 16px;
                    }

                    .footer-column a {
                        font-size: 13px;
                        margin-bottom: 10px;
                    }

                    .footer-bottom {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                }
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 60px 20px 48px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            width: 100%;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 20px;
            background: #ede9fe;
            color: #7c3aed;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
            animation: slideInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
        }

        .hero-headline {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 900;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: #18181b;
            margin: 0 0 16px 0;
            animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
            opacity: 0;
        }

        .hero-headline-gradient {
            background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
        }

        .hero-subheadline {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 400;
            color: #52525b;
            line-height: 1.6;
            max-width: 600px;
            margin: 24px auto 32px;
            animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
            opacity: 0;
        }

        .hero-cta-button {
            display: inline-block;
            padding: 16px 48px;
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: white;
            border: none;
            border-radius: 24px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
            animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
            opacity: 0;
        }

        .hero-cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
        }

        /* Category Filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 48px;
            padding: 0 20px;
            animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
            opacity: 0;
        }

        .filter-btn {
            padding: 10px 20px;
            background: #f5f3ff;
            color: #5b21b6;
            border: 1px solid #ddd6fe;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .filter-btn:hover {
            background: #ede9fe;
            color: #4c1d95;
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: #ffffff;
            border-color: #7c3aed;
            box-shadow: 0 6px 18px rgba(124, 58, 237, 0.24);
        }

        /* Shared injected grid overrides */
        .pls-grid-section {
            max-width: 100% !important;
            padding: 28px 12px !important;
            overflow-x: hidden !important;
            background: linear-gradient(180deg, #121625 0%, #0f121d 100%) !important;
            border-top: 1px solid #2f354a !important;
            border-bottom: 1px solid #2f354a !important;
        }

        .pls-grid-title {
            color: #f3f4f6 !important;
        }

        .pls-grid-sub {
            color: #cbd5e1 !important;
        }

        html.dark-mode .pls-grid-section {
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%) !important;
            border-top-color: #dbe4ff !important;
            border-bottom-color: #dbe4ff !important;
        }

        html.dark-mode .pls-grid-title {
            color: #0f172a !important;
        }

        html.dark-mode .pls-grid-sub {
            color: #475569 !important;
        }

        .pls-grid {
            grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
            gap: 8px !important;
            width: 100% !important;
            overflow: hidden !important;
        }

        .pls-gc {
            min-width: 0 !important;
            height: 116px !important;
            min-height: 116px !important;
            padding: 10px 6px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: space-between !important;
            text-align: center !important;
        }

          .pls-gc {
              background: #ffffff !important;
              border: 1px solid #dbe4ff  !important;
        }

        html.dark-mode .pls-gc {
              background: #1e2235 !important;
              border: 1px solid #343b51 !important;
        }

        .pls-gc img {
            flex: 0 0 70% !important;
            width: auto !important;
            height: 70% !important;
            max-height: 70% !important;
            max-width: 72% !important;
            margin-bottom: 0 !important;
        }

        .pls-gc span {
            flex: 0 0 auto !important;
            font-size: 11px !important;
            line-height: 1.2 !important;
            word-break: break-word;
              color: #1f2937 !important;
        }

        .pls-gc small {
            flex: 0 0 auto !important;
            font-size: 8px !important;
              color: #cbd5e1 !important;
        }

          html.dark-mode .pls-gc span {
              color: #f3f4f6 !important;
        }

          html.dark-mode .pls-gc small {
              color: #6b7280 !important;
        }

        .logo-card {
            position: relative;
            background: white;
            border: 1px solid #e4e4e7;
            border-radius: 24px;
            padding: 28px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
        }

        .logo-card:hover {
            transform: translateY(-12px) scale(1.04);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: #7c3aed;
        }

        .logo-image-container {
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            background: #f9fafb;
            border-radius: 16px;
            position: relative;
        }

        .logo-image {
            max-height: 100px;
            max-width: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
        }

        .logo-card:hover .logo-image {
            transform: scale(1.15);
        }

        .logo-name {
            font-size: 16px;
            font-weight: 600;
            color: #18181b;
            margin-bottom: 6px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .logo-badge {
            font-size: 11px;
            font-weight: 600;
            color: #059669;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .award-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
            color: #18181b;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 900;
            box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            font-weight: 500;
            color: #18181b;
            z-index: 100;
            animation: slideInUp 0.4s ease forwards;
            opacity: 0;
            max-width: 400px;
        }

        .toast::before {
            content: 'âœ“';
            color: #059669;
            font-weight: bold;
            margin-right: 8px;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger delays */
        .logo-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .logo-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .logo-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .logo-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .logo-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .logo-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        .logo-card:nth-child(7) {
            animation-delay: 0.35s;
        }

        .logo-card:nth-child(8) {
            animation-delay: 0.4s;
        }

        .logo-card:nth-child(9) {
            animation-delay: 0.45s;
        }

        .logo-card:nth-child(10) {
            animation-delay: 0.5s;
        }

        .logo-card:nth-child(11) {
            animation-delay: 0.55s;
        }

        .logo-card:nth-child(12) {
            animation-delay: 0.6s;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .header {
                padding: 8px 16px;
                min-height: 72px;
                height: auto;
                flex-wrap: wrap;
                gap: 12px;
            }

            .header-nav {
                display: none !important;
            }

            .header-search-container {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
                margin: 0;
            }

            .theme-toggle {
                margin-left: auto;
                padding: 8px 12px;
                font-size: 12px;
            }

            .header-cta {
                display: none !important;
            }

            .hero-section {
                min-height: auto;
                padding-top: 120px;
                padding-bottom: 40px;
            }

            .hero-content {
                padding: 20px 12px 32px;
            }

            .hero-headline {
                font-size: clamp(1.9rem, 7vw, 3.2rem);
            }

            .pls-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }
        }

        @media (max-width: 640px) {
            .pls-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 7px !important;
            }

            .pls-gc {
                height: 176px !important;
                min-height: 176px !important;
                padding: 10px 4px !important;
            }

            .pls-gc img {
                width: 100% !important;
                height: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
            }

            .pls-gc span {
                font-size: 2px !important;
            }

            .pls-gc small {
                font-size: 2px !important;
            }

            .footer {
                padding: 36px 16px 24px;
                margin-top: 36px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 420px) {
            .header {
                padding: 8px 12px;
            }

            .header-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }

            .header-logo-text {
                font-size: 15px;
            }

            .header-search {
                font-size: 13px;
                padding: 10px 14px 10px 36px;
            }

            .theme-toggle {
                padding: 6px 10px;
                font-size: 11px;
            }

            .pls-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
                gap: 6px !important;
            }

            .pls-gc {
                height: 164px !important;
                min-height: 164px !important;
                padding: 10px 4px !important;
            }

            .pls-gc img {
                width: 100% !important;
                height: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
            }

            .pls-gc span {
                font-size: 2px !important;
            }

            .pls-gc small {
                font-size: 2px !important;
            }

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

        /* Theme inversion overrides requested: light mode -> dark UI, dark mode -> light UI */
        html:not(.dark-mode) body {
            background: #0f1118 !important;
            color: #f3f4f6 !important;
        }

        html:not(.dark-mode) .header {
            background: #11131d !important;
            border-bottom-color: #2b2f3f !important;
        }

        html:not(.dark-mode) .header-logo-text,
        html:not(.dark-mode) .header-nav-link,
        html:not(.dark-mode) .hero-headline,
        html:not(.dark-mode) .logo-name,
        html:not(.dark-mode) .footer-column h3 {
            color: #f3f4f6 !important;
        }

        html:not(.dark-mode) .hero-overlay {
            background: rgba(12, 14, 20, 0.86) !important;
        }

        html:not(.dark-mode) .hero-subheadline,
        html:not(.dark-mode) .footer-column a,
        html:not(.dark-mode) .footer-copyright {
            color: #cbd5e1 !important;
        }

        html:not(.dark-mode) .theme-toggle,
        html:not(.dark-mode) .header-search,
        html:not(.dark-mode) .filter-btn {
            background: #1a1f2d !important;
            color: #e5e7eb !important;
            border-color: #343b51 !important;
        }

        html:not(.dark-mode) .filter-btn.active {
            background: linear-gradient(135deg, #6d28d9 0%, #4338ca 100%) !important;
            color: #ffffff !important;
        }

        html:not(.dark-mode) .footer {
            background: linear-gradient(180deg, #121625 0%, #0f121d 100%) !important;
            border-color: #2f354a !important;
        }

        html:not(.dark-mode) .pls-grid-title {
            color: #f3f4f6 !important;
        }

        html:not(.dark-mode) .pls-grid-sub {
            color: #cbd5e1 !important;
        }

        html:not(.dark-mode) #pls-live-grid .logo-card {
            background: #1e2235 !important;
            border: 1px solid #343b51 !important;
        }

        html:not(.dark-mode) #pls-live-grid .logo-card span {
            color: #f3f4f6 !important;
        }

        html:not(.dark-mode) #pls-live-grid .logo-card small {
            color: #cbd5e1 !important;
            opacity: 0.9 !important;
        }

        html:not(.dark-mode) .header-cta {
            background: #7c3aed !important;
            color: #ffffff !important;
            border-color: #6d28d9 !important;
        }

        html.dark-mode body {
            background: #f8fafc !important;
            color: #0f172a !important;
        }

        html.dark-mode .header {
            background: #ffffff !important;
            border-bottom-color: #e2e8f0 !important;
        }

        html.dark-mode .header-logo-text,
        html.dark-mode .header-nav-link,
        html.dark-mode .hero-headline,
        html.dark-mode .logo-name,
        html.dark-mode .footer-column h3 {
            color: #0f172a !important;
        }

        html.dark-mode .hero-overlay {
            background: rgba(255, 255, 255, 0.9) !important;
        }

        html.dark-mode .hero-subheadline,
        html.dark-mode .footer-column a,
        html.dark-mode .footer-copyright {
            color: #334155 !important;
        }

        html.dark-mode .theme-toggle,
        html.dark-mode .header-search,
        html.dark-mode .filter-btn {
            background: #ffffff !important;
            color: #334155 !important;
            border-color: #cbd5e1 !important;
        }

        html.dark-mode .filter-btn.active {
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
            color: #ffffff !important;
        }

        html.dark-mode .footer {
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%) !important;
            border-color: #dbe4ff !important;
        }

        html.dark-mode .pls-grid-title {
            color: #0f172a !important;
        }

        html.dark-mode .pls-grid-sub {
            color: #475569 !important;
        }

        html.dark-mode #pls-live-grid .logo-card {
            background: #ffffff !important;
            border: 1px solid #dbe4ff !important;
        }

        html.dark-mode #pls-live-grid .logo-card span {
            color: #1f2937 !important;
        }

        html.dark-mode #pls-live-grid .logo-card small {
            color: #6b7280 !important;
            opacity: 0.9 !important;
        }

        html.dark-mode .header-cta {
            background: #18181b !important;
            color: #f4f4f5 !important;
            border-color: #3f3f46 !important;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f9fafb;
        }

        ::-webkit-scrollbar-thumb {
            background: #7c3aed;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #6d28d9;
        }

body {
            box-sizing: border-box;
        }
