/* ========== ROOT VARIABLES ========== */
        :root {
            --dark-void: #0a0f1f;
            --void-secondary: #0f1428;
            --void-tertiary: #161d35;
            --accent-cyan: #00d9ff;
            --accent-purple: #8b5cf6;
            --accent-magenta: #ec4899;
            --glass-light: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --surface-base: rgba(10, 15, 31, 0.88);
            --surface-elevated: rgba(22, 29, 53, 0.88);
            --footer-bg: rgba(8, 12, 25, 0.94);
            --dropdown-bg: #171c35;
            --dropdown-border: rgba(255, 255, 255, 0.18);
            --dropdown-hover: rgba(0, 217, 255, 0.12);
            --menu-bg: rgba(10, 15, 31, 0.72);
            --menu-link: rgba(255, 255, 255, 0.78);
            --menu-link-active: #ffffff;
            --menu-button-bg: rgba(255, 255, 255, 0.08);
        }

        html[data-theme='light'] {
            --dark-void: #f1f6ff;
            --void-secondary: #e8eef9;
            --void-tertiary: #dde7f6;
            --glass-light: rgba(255, 255, 255, 0.86);
            --glass-border: rgba(29, 49, 87, 0.18);
            --text-primary: #13213d;
            --text-secondary: rgba(19, 33, 61, 0.74);
            --text-tertiary: rgba(19, 33, 61, 0.52);
            --surface-base: rgba(255, 255, 255, 0.94);
            --surface-elevated: rgba(241, 246, 255, 0.98);
            --footer-bg: rgba(223, 233, 248, 0.95);
            --dropdown-bg: #f7f9ff;
            --dropdown-border: rgba(30, 64, 175, 0.18);
            --dropdown-hover: rgba(30, 64, 175, 0.08);
            --menu-bg: rgba(255, 255, 255, 0.88);
            --menu-link: rgba(19, 33, 61, 0.78);
            --menu-link-active: #13213d;
            --menu-button-bg: rgba(30, 64, 175, 0.08);
        }

        /* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(180deg, var(--dark-void) 0%, var(--void-secondary) 50%, var(--dark-void) 100%);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
            min-height: 100vh;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .cosmic-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .cosmic-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 15, 31, 0.85);
            z-index: 0;
            transition: background 0.3s ease;
        }

        html[data-theme='light'] .cosmic-overlay {
            background: rgba(240, 247, 255, 0.55);
        }

        .cosmic-bg-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
            animation: cosmicShift 15s ease-in-out infinite;
        }

        @keyframes cosmicShift {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .grid-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(0deg, transparent 24%, rgba(0, 217, 255, 0.03) 25%, rgba(0, 217, 255, 0.03) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.03) 75%, rgba(0, 217, 255, 0.03) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(0, 217, 255, 0.03) 25%, rgba(0, 217, 255, 0.03) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.03) 75%, rgba(0, 217, 255, 0.03) 76%, transparent 77%, transparent);
            background-size: 50px 50px;
            animation: gridDrift 20s linear infinite;
        }

        @keyframes gridDrift {
            0% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(50px);
            }
        }

        /* ========== FLOATING COSMIC ORBS ========== */
        .cosmic-orbs {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            filter: blur(60px);
            animation: orbFloat 12s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: rgba(139, 92, 246, 0.2);
            top: 10%;
            left: 5%;
            animation-duration: 15s;
        }

        .orb-2 {
            width: 200px;
            height: 200px;
            background: rgba(0, 217, 255, 0.15);
            top: 65%;
            right: 8%;
            animation-delay: 3s;
            animation-duration: 18s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: rgba(236, 72, 153, 0.12);
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 6s;
            animation-duration: 20s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                opacity: 0;
                transform: translate(0, 0) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        /* ========== MAIN CONTENT WRAPPER ========== */
        .main-content {
            position: relative;
            z-index: 10;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 6.5rem 2rem 2rem;
            gap: 3rem;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 120;
            background: var(--menu-bg);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--glass-border);
        }

        .site-nav {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0.9rem 1.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand-lockup {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.4px;
        }

        .brand-mark {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.9rem;
        }

        .menu-links {
            display: flex;
            align-items: center;
            gap: 1rem;
            list-style: none;
        }

        .menu-links a {
            text-decoration: none;
            color: var(--menu-link);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            transition: color 0.25s ease;
        }

        .menu-links a:hover,
        .menu-links a.active {
            color: var(--menu-link-active);
        }

        .menu-actions {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .theme-toggle,
        .menu-toggle {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            background: var(--menu-button-bg);
            color: var(--text-primary);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle {
            display: none;
        }

        .nav-cta {
            border: 1px solid rgba(139, 92, 246, 0.6);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(236, 72, 153, 0.9));
            color: #fff;
            border-radius: 999px;
            padding: 0.55rem 1rem;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            border-top: 1px solid var(--glass-border);
            padding: 0.8rem 1rem 1rem;
            background: var(--surface-base);
        }

        .mobile-menu.open {
            display: grid;
            gap: 0.6rem;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 0.6rem 0.8rem;
            background: var(--menu-button-bg);
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* ========== HERO SECTION - CENTERED ========== */
        .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            max-width: 900px;
            text-align: center;
            animation: fadeInDown 1s ease-out 0.2s both;
            z-index: 20;
        }

        .hero-pre-title {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-cyan);
            animation: fadeIn 1s ease-out 0.4s both;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 9vw, 4.5rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 50%, var(--accent-magenta) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 1s ease-out 0.6s both;
            max-width: 95%;
        }

        .hero-bg-brands img {
            position: absolute;
            filter: grayscale(100%);
            transition: all 0.5s ease;
            animation: orbFloat 12s ease-in-out infinite alternate;
        }

        .hero-section:hover .hero-bg-brands img {
            filter: grayscale(0%);
            opacity: 0.8 !important;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 700px;
            line-height: 1.8;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        /* ========== SEARCH SECTION ========== */
        .search-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            max-width: 680px;
            width: 100%;
            animation: fadeInUp 1s ease-out 1s both;
            z-index: 25;
        }

        .search-panel {
            width: 100%;
            padding: 1.5rem;
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .home-grid-section {
            width: 100% !important;
            max-width: 1000px !important;
            margin-top: 1.4rem !important;
            animation: fadeInUp 1s ease-out 1.05s both !important;
            z-index: 24 !important;
            display: block !important;
            visibility: visible !important;
        }

        .home-grid-title {
            text-align: center;
            font-size: 1.55rem;
            font-weight: 700;
            margin-bottom: 0.45rem;
            color: var(--text-primary);
        }

        .home-grid-sub {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .home-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)) !important;
            gap: 0.9rem !important;
            width: 100% !important;
            min-height: 240px !important;
        }

        .popular-pagination {
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .pager-btn {
            border: 1px solid var(--glass-border);
            background: var(--glass-light);
            color: var(--text-primary);
            border-radius: 10px;
            padding: 0.45rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
        }

        .pager-btn[disabled] {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .pager-meta {
            font-size: 0.8rem;
            color: var(--text-secondary);
            min-width: 120px;
            text-align: center;
        }

        .home-grid-card {
            min-height: 124px;
            padding: 0.9rem 0.7rem;
        }

        .search-input-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.75rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .search-input-wrapper:focus-within {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
        }

        .search-icon {
            color: var(--accent-cyan);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .search-input {
            flex: 1;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
        }

        .search-input::placeholder {
            color: var(--text-tertiary);
        }

        .search-button {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-magenta));
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
            font-family: inherit;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .search-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
        }

        /* ========== CATEGORY CHIPS ========== */
        .category-chips {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .chip {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            border-radius: 16px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .chip:hover {
            background: rgba(0, 217, 255, 0.15);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .chip.active {
            background: rgba(0, 217, 255, 0.22);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        /* ========== THREE COLUMN LAYOUT ========== */
        .three-column-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            width: 100%;
            max-width: 1000px;
            margin-top: 2rem;
            animation: fadeInUp 1s ease-out 1.2s both;
            z-index: 20;
        }

        @media (max-width: 1024px) {
            .three-column-layout {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .three-column-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ========== INFO CARDS ========== */
        .info-card {
            padding: 1.5rem;
            background: var(--glass-light);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-cyan);
        }

        .card-icon {
            font-size: 2rem;
            background: rgba(139, 92, 246, 0.2);
            width: 60px;
            height: 60px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
        }

        .card-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .card-description {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        /* ========== LOGO CARDS ========== */
        .logo-card {
            padding: 1.2rem !important;
            background: var(--glass-light) !important;
            border: 1px solid var(--glass-border) !important;
            border-radius: 12px !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(15px) !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            gap: 0.8rem !important;
            cursor: pointer !important;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
            min-height: 160px !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .logo-card:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.2), 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .logo-icon {
            font-size: 2.5rem;
        }

        .logo-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .logo-category {
            font-size: 0.65rem;
            color: var(--accent-cyan);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ========== CALL-TO-ACTION ========== */
        .cta-section {
            width: 100%;
            max-width: 1000px;
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 217, 255, 0.08));
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            animation: fadeInUp 1s ease-out 1.6s both;
            z-index: 20;
        }

        .cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .cta-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 500px;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .cta-button {
            padding: 0.8rem 1.8rem;
            background: var(--accent-cyan);
            color: var(--dark-void);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            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);
            }
        }

        /* ========== MODAL ========== */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 15, 31, 0.9);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 200;
            padding: 2rem;
            animation: fadeIn 0.3s ease-out;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--void-tertiary);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2rem;
            max-width: 500px;
            width: 100%;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: fadeInUp 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .modal-close:hover {
            color: var(--accent-cyan);
            transform: rotate(90deg);
        }

        .modal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
        }

        .modal-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .download-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .download-btn {
            padding: 0.7rem 1.2rem;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-magenta));
            border: none;
            color: white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        /* ========== SCROLL SECTION ========== */
        .scroll-section {
            position: relative;
            width: 100%;
            padding: 4rem 2rem;
            z-index: 50;
            background: linear-gradient(180deg, rgba(10, 15, 31, 0), var(--dark-void) 50%);
            margin-top: 2rem;
        }

        .scroll-heading {
            max-width: 1000px;
            margin: 0 auto 1.4rem;
            text-align: center;
        }

        .scroll-heading h2 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.45rem;
        }

        .scroll-heading p {
            color: var(--text-secondary);
            font-size: 0.92rem;
        }

        .scroll-content {
            max-width: 1000px !important;
            margin: 0 auto !important;
            display: grid !important;
            grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
            gap: 0.85rem !important;
            min-height: 200px !important;
        }

        .content-card {
            background: var(--glass-light) !important;
            border: 1px solid var(--glass-border) !important;
            border-radius: 12px !important;
            padding: 0.85rem !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(15px) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
            transition: all 0.3s ease !important;
            animation: fadeInUp 0.8s ease-out backwards !important;
            cursor: pointer !important;
            display: block !important;
            visibility: visible !important;
        }

        .content-card:nth-child(1) {
            animation-delay: 0s;
        }

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

        .content-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .content-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        .content-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-cyan);
            background: rgba(255, 255, 255, 0.1);
        }

        .content-card h3 {
            font-size: 0.92rem;
            color: var(--text-primary);
            margin-bottom: 0.35rem;
            font-weight: 700;
        }

        .content-card p {
            font-size: 0.72rem;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .content-card-head {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }

        .content-logo {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .footer {
            width: 100%;
            position: relative;
            z-index: 40;
            margin-top: 1rem;
            background: var(--footer-bg);
            border-top: 1px solid var(--glass-border);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2.2rem 1.4rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1.2rem;
        }

        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .footer-copy,
        .footer-link {
            color: var(--text-secondary);
            font-size: 0.86rem;
            line-height: 1.7;
            text-decoration: none;
        }

        .footer-link:hover {
            color: var(--accent-cyan);
        }

        .footer-meta {
            border-top: 1px solid var(--glass-border);
            padding: 0.9rem 1.4rem 1.4rem;
            text-align: center;
            color: var(--text-tertiary);
            font-size: 0.8rem;
        }

        .search-input-wrapper .pls-sr {
            background: var(--dropdown-bg);
            border: 1px solid var(--dropdown-border);
            border-top: none;
        }

        .search-input-wrapper .pls-si {
            border-bottom: 1px solid var(--dropdown-border);
        }

        .search-input-wrapper .pls-si:hover {
            background: var(--dropdown-hover);
        }

        .search-input-wrapper .pls-si b {
            color: var(--text-primary);
        }

        .search-input-wrapper .pls-si small {
            color: var(--text-tertiary);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            .site-nav {
                padding: 0.8rem 1rem;
            }

            .menu-links,
            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .hero-section {
                gap: 1.5rem;
            }

            .hero-title {
                font-size: clamp(2rem, 7vw, 3rem);
            }

            .search-section {
                max-width: 95%;
            }

            .search-input-wrapper {
                flex-wrap: wrap;
            }

            .search-button {
                width: 100%;
            }

            .home-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 0.55rem;
            }

            .home-grid-card {
                min-height: 98px !important;
                padding: 0.6rem 0.35rem !important;
            }

            .home-grid-card .content-logo {
                width: 26px;
                height: 26px;
            }

            .home-grid-card .logo-name {
                font-size: 0.68rem;
            }

            .home-grid-card .logo-category {
                font-size: 0.56rem;
            }

            .three-column-layout {
                gap: 1rem;
                margin-top: 1rem;
            }

            .cta-section {
                margin-top: 1rem;
                padding: 1.5rem;
            }

            .scroll-content {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 1rem;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                padding: 1.6rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 1rem;
                gap: 1.5rem;
            }

            .main-content {
                padding-top: 5.8rem;
            }

            .hero-title {
                font-size: clamp(1.5rem, 6vw, 2.2rem);
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .search-section {
                max-width: 100%;
            }

            .search-panel {
                padding: 1rem;
            }

            .category-chips {
                gap: 0.5rem;
            }

            .chip {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }

            .home-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 0.45rem;
            }

            .home-grid-card {
                min-height: 92px !important;
                padding: 0.5rem 0.3rem !important;
            }

            .scroll-content {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .logo-card {
                min-height: 120px;
                padding: 0.8rem;
            }

            .logo-icon {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-button,
            .cta-button-secondary {
                width: 100%;
            }

            .footer-meta {
                padding-inline: 1rem;
            }
        }

        /* ========== UTILITY CLASSES ========== */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            pointer-events: none;
            z-index: 0;
        }

        html[data-theme='light'] body::before {
            background: rgba(227, 236, 249, 0.26);
        }
