     /* Modern Search Bar */
.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
    margin: 0 15px;
}

.search-bar-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar-modern:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 242, 234, 0.1);
}

.search-bar-modern input {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    width: 100%;
    outline: none;
    margin-left: 10px;
}

/* Search Results Overlay */
.search-overlay {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    display: none;
    max-height: 450px;
    overflow-y: auto;
    z-index: 9999;
}

.search-results-wrapper { padding: 15px; }

.search-meta {
    padding: 0 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Result Item */
.result-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
    margin-bottom: 5px;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.result-card img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.result-info { flex: 1; }
.result-info h5 { font-size: 16px; margin-bottom: 2px; }
.result-info span { 
    font-size: 11px; 
    padding: 2px 8px; 
    background: rgba(0, 242, 234, 0.15); 
    color: var(--accent);
    border-radius: 4px;
    font-weight: 700;
}
        /* --- Web Apps Specific Design --- */
        .web-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

        .web-card {
            background: #121212;
            border-radius: 24px;
            padding: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .web-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(0, 242, 234, 0.15);
        }

        .web-icon-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 20px;
            background: #1a1a1a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 0.5px solid rgba(255,255,255,0.1);
        }

        .web-icon-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .web-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .web-url {
            font-size: 11px;
            color: var(--accent);
            opacity: 0.8;
            margin-bottom: 15px;
            word-break: break-all;
        }

        .visit-btn {
            background: rgba(0, 242, 234, 0.1);
            color: var(--accent);
            border: 1px solid var(--accent);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            width: 100%;
            transition: 0.3s;
        }

        .web-card:hover .visit-btn {
            background: var(--accent);
            color: black;
        }

        .category-header {
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 0.5px solid #222;
        }