        :root {
            --brand: #0f172a;
            --accent: #3b82f6;
            --surface: #ffffff;
            --bg: #ffffff; /* Updated to white background */
            --text-strong: #1e293b;
            --text-soft: #64748b;
            --border: #e2e8f0;
            --radius: 12px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background: var(--bg); 
            color: var(--text-strong); 
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- Navigation (Keeping Brand Dark) --- */
        nav {
            background: var(--brand);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }
        .logo { font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; gap: 8px; }
        .logo span { color: var(--accent); }

        /* Always White Link Logic */
        .white-link, .white-link:visited, .white-link:hover, .white-link:active {
            color: #ffffff !important;
            text-decoration: none !important;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* --- Minimal Search Section --- */
        .search-hero {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 5%;
            text-align: center;
        }

        .search-hero h1 { 
            font-size: 2.75rem; 
            margin-bottom: 0.5rem; 
            font-weight: 800; 
            color: var(--brand);
            letter-spacing: -1px;
        }
        .search-hero p { 
            color: var(--text-soft); 
            margin-bottom: 2.5rem; 
            font-size: 1.1rem; 
        }

        /* --- Search Group (Styled for White BG) --- */
        .search-group {
            width: 100%;
            max-width: 600px;
            display: flex;
            gap: 8px;
            background: var(--surface);
            padding: 8px;
            border-radius: 14px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .main-search {
            flex-grow: 1;
            background: transparent;
            border: none;
            padding: 12px 16px;
            color: var(--text-strong);
            font-size: 1rem;
            outline: none;
            font-family: inherit;
			width: 700px;
        }
        .main-search::placeholder { color: #94a3b8; }

        .btn-submit {
            background: var(--brand); /* Dark button for high contrast on white bg */
            color: white;
            border: none;
            padding: 0 24px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        .btn-submit:hover {
            background: var(--accent);
            transform: translateY(-1px);
        }

        /* --- Loader Styling --- */
        .hidden { display: none !important; }
        .spin { animation: spin 0.8s linear infinite; }
        @keyframes spin { 100% { transform: rotate(360deg); } }

        footer {
            padding: 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-soft);
            border-top: 1px solid var(--border);
        }