  .search-dropdown {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none; /* Izajya igaragara gusa iyo umuntu yanditse */
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 0.5px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: 0.2s;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.suggestion-item img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-right: 12px;
}

.suggestion-info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.suggestion-info p {
    color: #8e8e93;
    font-size: 12px;
}
      /* --- Header & Search Bar --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(25px); /* Frosty glass effect */
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.search-box {
    flex: 1;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 1px var(--accent);
}

.search-box i {
    color: #8e8e93;
    font-size: 20px;
    margin-right: 10px;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    font-size: 16px;
    outline: none;
}

.search-box input::placeholder {
    color: #8e8e93;
}

/* Profile Icon */
.profile-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .logo { font-size: 1.2rem; }
    .search-box { max-width: 200px; }
}
        body { background: #000; padding-top: 20px; }
        
        /* Section styling */
        .app-section { margin-bottom: 35px; padding-left: 20px; }
        .section-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: flex-end; 
            padding-right: 20px;
            margin-bottom: 15px;
            border-top: 0.5px solid #222;
            padding-top: 15px;
        }
        .section-header h2 { font-size: 22px; font-weight: 700; }
        .section-header a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 14px; }

        /* Horizontal Scroll Wrapper */
        .scroll-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding-bottom: 10px;
        }
        .scroll-container::-webkit-scrollbar { display: none; }

        /* App Item Style (Modern List) */
        .app-row-item {
            min-width: 85%;
            display: flex;
            align-items: center;
            padding: 10px 0;
            scroll-snap-align: start;
        }

        .app-icon-large {
            width: 65px;
            height: 65px;
            border-radius: 14px;
            margin-right: 15px;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .app-info { flex: 1; border-bottom: 0.5px solid #222; padding-bottom: 10px; }
        .app-info h4 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
        .app-info p { color: #8e8e93; font-size: 13px; }

        .btn-get-action {
            background: #1c1c1e;
            color: var(--accent);
            border: none;
            padding: 6px 22px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 14px;
            margin-left: 10px;
        }

        a{
            text-decoration: none;
        }

        /* Hero Banner for Apps Page */
        .apps-hero-banner {
            margin: 0 20px 30px;
            height: 220px;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8)), url('https://plus.unsplash.com/premium_photo-1685086785054-d047cdc0e525?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDJ8fHNvZnR3YXJlfGVufDB8fDB8fHww');
            background-size: cover;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
        }