/*
Theme Name: MediaVerse Aura
Theme URI: https://mediaverse.com
Author: Manas K.
Description: A custom, lightweight theme for MediaVerse.
Version: 1.0
*/
<style>
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
body{
	margin:0 !important;
}

    #mediaverse-liquid-header, 
    #mediaverse-liquid-mobile-menu {
        --glass-bg: rgba(255, 255, 255, 0.11);
        --glass-border: rgba(255, 255, 255, 0.2);
        --glass-highlight: rgba(255, 255, 255, 0.4);
        --glass-shadow: rgba(0, 0, 0, 0.1);
        --glass-blur: 32px;
        font-family: 'Quicksand', sans-serif;
    }

    /* Header Wrapper */
    #mediaverse-liquid-header {
        position: fixed;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 1400px;
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mvlh-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* The Unified Glass Pill */
    .mvlh-glass-pill {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--glass-blur)) saturate(200%);
        -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(200%);
        border-radius: 100px; 
        border: 1px solid var(--glass-border);
        border-top: 1px solid var(--glass-highlight);
        box-shadow: 
            0 15px 35px var(--glass-shadow),
            inset 0 4px 15px rgba(255, 255, 255, 0.1),
            inset 0 -4px 15px rgba(0, 0, 0, 0.05);
        padding: 8px 30px;
        transition: all 0.4s ease;
    }

    /* Scrolled State */
    #mediaverse-liquid-header.is-scrolled {
        top: 15px;
    }

    #mediaverse-liquid-header.is-scrolled .mvlh-glass-pill {
        background: rgba(255, 255, 255, 0.85);
        padding: 5px 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    /* Logo Styling */
    .mvlh-logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: transform 0.4s ease;
    }
    
    .mvlh-logo {
        height: 45px;
        width: auto;
        transition: all 0.4s ease;
    }
    
    .mvlh-logo-link:hover .mvlh-logo {
        transform: scale(1.05);
    }

    #mediaverse-liquid-header.is-scrolled .mvlh-logo {
        height: 35px;
    }

    /* Desktop Navigation */
    .mvlh-nav {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .mvlh-link {
        color: #000000;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 40px;
        transition: all 0.3s ease;
    }

    .mvlh-link:hover, .mvlh-link.active {
        background: rgba(255, 255, 255, 0.4);
        color: #000000;
    }

    /* Hamburger Menu Button */
    .mvlh-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    .mvlh-line {
        width: 24px;
        height: 2px;
        background-color: #000000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Mobile Menu Overlay */
    #mediaverse-liquid-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(35px) saturate(200%);
        -webkit-backdrop-filter: blur(35px) saturate(200%);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #mediaverse-liquid-mobile-menu.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mvlh-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .mvlh-mobile-link {
        color: #333;
        text-decoration: none;
        font-size: 24px;
        font-weight: 600;
        transition: 0.3s;
    }

    /* Hamburger Animation */
    .mvlh-hamburger.is-active .mvlh-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mvlh-hamburger.is-active .mvlh-line:nth-child(2) { opacity: 0; }
    .mvlh-hamburger.is-active .mvlh-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Responsive Design */
    @media (max-width: 992px) {
        .mvlh-nav { display: none; }
        .mvlh-hamburger { display: flex; }
        .mvlh-glass-pill { padding: 8px 20px; }
    }
/* =========================================
   Full Width Page Layout
   ========================================= */
.mv-full-width-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling from animations */
}

/* Optional: If you want specific sections inside the full-width page to be contained 
   like your header/footer, you can use this class on those inner divs */
.mv-contained-section {
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 22px;
    box-sizing: border-box;
}
</style>

