 :root {
        --nav-bg: #ffffff;
        --nav-text: #2c3e50;
        --nav-primary: #1a73e8;
        --nav-primary-hover: #1557b0;
        --nav-search-bg: #f1f4f9;
        --nav-shadow: 0 4px 20px rgba(0,0,0,0.06);
        --transition-speed: 0.3s;
    }

    * {
        box-sizing: border-box;
    }

    @keyframes navSlideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* --- Global Header --- */
    .mskib-global-header {
        background: var(--nav-bg);
        box-shadow: var(--nav-shadow);
        padding: 0 30px;
        position: fixed;
        top: 0; left: 0; width: 100%;
        height: 70px;
        z-index: 100000; 
        display: flex;
        align-items: center;
        justify-content: space-between;
        animation: navSlideDown 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        font-family: 'Manrope', sans-serif;
    }

    /* Logo hover effect */
    .mskib-brand-logo:hover img {
        transform: scale(1.08);
        transition: 0.2s ease-in-out;
    }

    /* --- DESKTOP SEARCH BAR (Premium Style) --- */
    .mskib-search-engine-box {
        flex: 1;
        max-width: 650px;
        margin: 0 40px;
        position: relative;
    }

    .mskib-search-input-group {
        display: flex;
        background: var(--nav-search-bg);
        border-radius: 50px;
        border: 2px solid transparent;
        transition: all var(--transition-speed) ease;
        overflow: hidden;
    }

    .mskib-search-input-group:focus-within {
        background: #ffffff;
        border-color: var(--nav-primary);
        box-shadow: 0 0 0 4px rgba(26,115,232,0.15);
    }

    .mskib-query-input {
        border: none;
        background: transparent;
        padding: 14px 25px;
        width: 100%;
        font-size: 15px;
        font-family: inherit;
        outline: none;
        color: #333;
    }

    .mskib-search-trigger {
        background: var(--nav-primary);
        border: none;
        color: white;
        padding: 0 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 15px;
        transition: background var(--transition-speed);
    }
    
    .mskib-search-trigger:hover {
        background: var(--nav-primary-hover);
    }

    /* --- SUGGESTIONS BOX --- */
    .mskib-keyword-suggestions {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        display: none; 
        z-index: 100001;
        max-height: 400px;
        overflow-y: auto;
        border: 1px solid #eee;
        padding: 8px 0;
    }

    .mskib-keyword-suggestions::-webkit-scrollbar { width: 6px; }
    .mskib-keyword-suggestions::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

    .mskib-suggestion-row {
        padding: 12px 20px;
        cursor: pointer;
        font-size: 15px;
        color: #444;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: background 0.2s;
    }
    .mskib-suggestion-row:hover { background: #f8f9fa; color: var(--nav-primary); }

    /* --- DESKTOP LINKS --- */
    .mskib-desktop-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .mskib-desktop-links a {
        text-decoration: none;
        color: var(--nav-text);
        font-weight: 700;
        font-size: 15px;
        transition: color 0.2s;
    }
    .mskib-desktop-links a:hover { color: var(--nav-primary); }

    /* NEW: Join Community button (desktop nav) */
    .mskib-community-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        background: #8b5cf6;
        color: #ffffff !important;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: 0.25s ease;
        box-shadow: 0 4px 12px rgba(139,92,246,0.25);
        white-space: nowrap;
    }
    .mskib-community-btn:hover {
        background: #7c3aed;
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(139,92,246,0.35);
    }
    .mskib-community-btn svg { flex-shrink: 0; }

    /* --- MOBILE ICONS & MENU --- */
    .mskib-mobile-icons {
        display: none;
        align-items: center;
        gap: 15px;
    }
    
    .mskib-icon-btn {
        background: var(--nav-search-bg);
        border: none;
        color: var(--nav-text);
        cursor: pointer;
        width: 45px; height: 45px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        transition: 0.3s;
    }
    .mskib-icon-btn:active { transform: scale(0.95); }

    .mskib-hamburger-icon {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        width: 45px; height: 45px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    .mskib-hamburger-icon span {
        display: block; width: 25px; height: 3px; background: var(--nav-text); border-radius: 2px; transition: 0.3s;
    }

    /* --- MOBILE APP-LIKE SEARCH PANEL (Unique) --- */
    .mobile-search-backdrop {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 200000;
        opacity: 0; pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .mobile-search-backdrop.active { opacity: 1; pointer-events: auto; }

    .mobile-search-panel {
        position: fixed;
        top: 0; left: 0; width: 100%;
        background: #ffffff;
        z-index: 200001;
        padding: 20px;
        border-radius: 0 0 24px 24px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .mobile-search-panel.active { transform: translateY(0); }

    .mobile-search-header {
        display: flex; align-items: center; gap: 15px; margin-bottom: 15px;
    }
    .mobile-close-btn {
        background: #f1f4f9; border: none; width: 40px; height: 40px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; color: #555; cursor: pointer;
    }
    .mobile-search-input-wrapper {
        flex: 1; display: flex; background: #fff; border: 2px solid var(--nav-primary);
        border-radius: 12px; overflow: hidden;
    }
    .mobile-search-input-wrapper input {
        flex: 1; border: none; padding: 12px 15px; font-size: 16px; outline: none;
    }
    .mobile-search-input-wrapper button {
        background: var(--nav-primary); color: white; border: none; padding: 0 15px;
    }

    /* Mobile Sidebar Drawer */
    .mskib-side-drawer {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
        background: #fff; z-index: 200002; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); padding: 30px;
        display: flex; flex-direction: column;
    }
    .mskib-side-drawer.is-open { right: 0; }
    .mskib-drawer-close {
        align-self: flex-end; background: none; border: none; font-size: 32px; cursor: pointer; margin-bottom: 20px; color: #333;
    }

    /* NEW: Join Community link (mobile drawer) */
    .mskib-drawer-community-link {
        display: flex !important;
        align-items: center;
        gap: 10px;
        background: #8b5cf6;
        color: #ffffff !important;
        padding: 12px 16px;
        border-radius: 12px;
        border-bottom: none !important;
        justify-content: center;
    }

    @media (max-width: 900px) {
        .mskib-global-header { padding: 0 15px; height: 70px; background:rgba(255,255,255,0.8); }
        .mskib-desktop-links, .mskib-search-engine-box { display: none; }
        .mskib-hamburger-icon, .mskib-mobile-icons { display: flex; }
    }
    
    
    .wraxelo-navigation-logo{
        max-width: 170px; 
        height: auto;
    }
    
    @media (max-width:720px){
        .wraxelo-navigation-logo{
            width: 100px;
        }
    }