  /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #1a1a1a;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Contenedor principal del menú */
        .mnm-nav-container {
            background: #000000;
            border-bottom: 1px solid #ffd700;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
        }

        .mnm-nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        /* Logo */
        .mnm-logo {
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            color: #ffd700;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .mnm-logo:hover {
            opacity: 0.8;
        }

        /* Menú hamburguesa */
        .mnm-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            background: transparent;
            border: none;
            z-index: 1001;
        }

        .mnm-hamburger span {
            width: 24px;
            height: 1px;
            background: #ffd700;
            transition: all 0.3s ease;
        }

        .mnm-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mnm-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .mnm-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Navegación principal */
        .mnm-nav-menu {
            display: flex;
            gap: 0;
            list-style: none;
        }

        .mnm-nav-item {
            position: relative;
        }

        .mnm-nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 24px 20px;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .mnm-nav-link:hover {
            color: #ffd700;
        }

        /* Indicador de dropdown */
        .mnm-dropdown-icon {
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid currentColor;
            transition: transform 0.3s ease;
        }

        .mnm-nav-item:hover .mnm-dropdown-icon {
            transform: rotate(180deg);
        }

        /* Menú desplegable */
        .mnm-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1a1a1a;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid #ffd700;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
            padding: 12px 0;
        }

        .mnm-nav-item:hover .mnm-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mnm-dropdown-item {
            display: block;
            padding: 12px 24px;
            color: #cccccc;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            border-left: 2px solid transparent;
        }

        .mnm-dropdown-item:hover {
            background: #000000;
            color: #ffd700;
            border-left-color: #ffd700;
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .mnm-hamburger {
                display: flex;
            }

            .mnm-nav-wrapper {
                padding: 0 1rem;
            }

            .mnm-nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #000000;
                flex-direction: column;
                padding: 80px 0 20px;
                gap: 0;
                overflow-y: auto;
                transition: right 0.3s ease;
                box-shadow: -2px 0 8px rgba(255, 215, 0, 0.3);
            }

            .mnm-nav-menu.active {
                right: 0;
            }

            .mnm-nav-item {
                border-bottom: 1px solid #333333;
            }

            .mnm-nav-link {
                padding: 18px 24px;
                justify-content: space-between;
            }

            .mnm-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                border: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background: #0a0a0a;
                padding: 0;
            }

            .mnm-nav-item.active .mnm-dropdown {
                max-height: 1000px;
                padding: 8px 0;
            }

            .mnm-nav-item.active .mnm-dropdown-icon {
                transform: rotate(180deg);
            }

            .mnm-dropdown-item {
                padding: 10px 24px 10px 40px;
                font-size: 0.85rem;
            }

            .mnm-dropdown-item:hover {
                background: #1a1a1a;
            }
        }

        /* Overlay para móvil */
        .mnm-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mnm-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Contenido demo */
        .mnm-demo-content {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 2rem;
        }

        .mnm-demo-content h1 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .mnm-demo-content p {
            font-size: 1.1rem;
            color: #cccccc;
            line-height: 1.8;
            max-width: 800px;
        }