    :root {
        --primary: #8b5cf6;
        --secondary: #6366f1;
        --bg-dark: #0f172a;
        --card-bg: rgba(30, 41, 59, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #f8fafc;
        --text-secondary: #94a3b8;
        --gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--bg-dark);
        background-image:
            radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
        color: var(--text-primary);
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
    }

    header {
        text-align: center;
        margin-bottom: 20px;
        animation: fadeInDown 0.8s ease-out;
        position: relative;
        padding-top: 30px;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .logo-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }

    .logo-aura {
        position: absolute;
        inset: -10px;
        background: var(--gradient);
        filter: blur(20px);
        opacity: 0.5;
        border-radius: 50%;
        z-index: -1;
    }

    .logo {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--glass-border);
        background: #fff;
        padding: 5px;
    }

    h1 {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

    .location {
        font-size: 0.9rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .lang-switcher {
        position: absolute; z-index: 99999;
        top: 0;
        right: 0;
        display: flex;
        gap: 8px;
    }

    .lang-link {
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .lang-link:hover {
        transform: scale(1.2);
    }

    .lang-link img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid var(--glass-border);
    }

    .search-container {
        margin-bottom: 30px;
        animation: fadeIn 1s ease-out 0.2s both;
    }

    .search-box {
        background: var(--card-bg);
        backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 5px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: border-color 0.3s;
    }

    .search-box:focus-within {
        border-color: var(--primary);
    }

    .search-box input {
        background: transparent;
        border: none;
        color: white;
        padding: 4px 0;
        width: 100%;
        font-size: 1rem;
        outline: none;
    }

    .search-box i {
        color: var(--text-secondary);
    }

    #homeResult {
        margin-top: 10px;
        background: var(--card-bg);
        backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        overflow: hidden;
        display: none;
        padding: 5px 10px;
    }

    #homeResult ul {
        list-style: none;
        color: #fff;
    }

    #homeResult ul li a {
        color: #fff;
        text-decoration: none;
    }

    .category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        animation: fadeIn 1s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .category-card {
        background: var(--card-bg);
        backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        overflow: hidden;
        text-decoration: none;
        transition: transform 0.3s, border-color 0.3s;
        position: relative;
    }

    .category-card:active {
        transform: scale(0.95);
    }

    .category-img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        opacity: 0.9;
        transition: transform 0.5s;
    }

    .category-card:hover .category-img {
        transform: scale(1.1);
    }

    .category-content {
        padding: 15px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .category-title {
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .footer-aura {
        text-align: center;
        margin-top: 50px;
        color: var(--text-secondary);
        font-size: 0.8rem;
        opacity: 0.7;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        background: var(--card-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }

    .social-link:hover {
        background: var(--primary);
    }

    .menu-adv-area {
        margin-bottom: 25px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        animation: fadeIn 1s ease-out 0.3s both;
    }

    .menu-adv-area img {
        width: 100%;
        display: block;
        object-fit: cover;
        max-height: 120px;
    }
#homeResult {
    margin-top: 10px;
    background: var(--card-bg, #fff);
    /* Fallback to theme bg */
    border: 1px solid var(--border, #ccc);
    border-radius: 12px;
    overflow: hidden;
    display: none;
    padding: 5px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#homeResult ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#homeResult ul li a {
    display: block;
    padding: 12px 20px;
    color: var(--text, #000);
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.05));
}

#homeResult ul li:last-child a {
    border-bottom: none;
}

#homeResult ul li a:hover {
    background: var(--primary, #eee);
    color: var(--text, #000);
}
